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 cc78031..7d3d8a2 100644
--- a/inc/list.hpp
+++ b/inc/list.hpp
@@ -17,12 +17,12 @@ class List
void Behavior();
void Place();
void Remove();
- list<Entity*> getNear(Creature C);
+ std::list<Entity*> getNear(Creature C);
private:
Window main = Window("do not create new window.");
- list<Resource> R;
- list<Creature> C;
+ std::list<Resource> R;
+ std::list<Creature> C;
};
#endif