diff options
Diffstat (limited to 'inc/list.hpp')
-rw-r--r-- | inc/list.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/inc/list.hpp b/inc/list.hpp index f43ba07..e2b94e5 100644 --- a/inc/list.hpp +++ b/inc/list.hpp @@ -19,11 +19,9 @@ class List std::vector<Organism*> getNear(Organism o); - std::list<Organism> resources; - std::list<Organism> creatures; + std::list<Organism> organisms; Quadtree tree; - std::vector<Rectangle> drawQuadTree(); }; #endif |