summaryrefslogtreecommitdiff
path: root/inc/List.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/List.hpp')
-rw-r--r--inc/List.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/inc/List.hpp b/inc/List.hpp
index e997391..931ff8a 100644
--- a/inc/List.hpp
+++ b/inc/List.hpp
@@ -6,7 +6,7 @@
#include <ncurses.h>
#include <ctime>
#include <cstdlib>
-
+#include "Location.hpp"
using namespace std;
class List
@@ -14,9 +14,10 @@ class List
public:
List();
void draw(WINDOW * w);
- void actions();
+ void action();
private:
- vector <Character> men;
+ vector <Character> men;
+ vector <Location> occupied;
};
#endif