summaryrefslogtreecommitdiff
path: root/inc/list.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/list.hpp')
-rw-r--r--inc/list.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/list.hpp b/inc/list.hpp
index 9d05fec..3ad8477 100644
--- a/inc/list.hpp
+++ b/inc/list.hpp
@@ -13,13 +13,13 @@ class List
void Behavior();
void Place();
double Distance(Location A, Location B){return sqrt(pow(A.x-B.x,2)+pow(A.y-B.y,2));};
- vector<Entity*> getNear(Creature C);
+ list<Entity*> getNear(Creature C);
private:
//vectors containing objects of each type
Window main = Window("no");//will be needed for adding R's and C's after constructor.
- vector<Resource> R;
- vector<Creature> C;
+ list<Resource> R;
+ list<Creature> C;
};
#endif