From 22cd24a1fe33b6bc9f52a600feb5cdb8d868d50f Mon Sep 17 00:00:00 2001 From: tom Date: Tue, 5 May 2015 15:25:32 -0500 Subject: fixed list to make it easy to add more creatures/resources. need to figure out how to generate more random numbers after - implement resource amount and ability to eat --- inc/list.hpp | 5 +++-- inc/window.hpp | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'inc') diff --git a/inc/list.hpp b/inc/list.hpp index 6ae906d..240fa95 100644 --- a/inc/list.hpp +++ b/inc/list.hpp @@ -10,12 +10,13 @@ class List public: List(Window m); void Behavior(); + void Place(); private: + //Window main; std::vector R; std::vector C; - Window main; int ** L; }; -#endif \ No newline at end of file +#endif diff --git a/inc/window.hpp b/inc/window.hpp index b28da56..2f65b04 100644 --- a/inc/window.hpp +++ b/inc/window.hpp @@ -9,6 +9,8 @@ #include #include #include +#include +#include class Window { -- cgit v1.2.3