summaryrefslogtreecommitdiff
path: root/inc/List.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/List.hpp')
-rw-r--r--inc/List.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/inc/List.hpp b/inc/List.hpp
index ce3f413..447903b 100644
--- a/inc/List.hpp
+++ b/inc/List.hpp
@@ -11,11 +11,12 @@ using namespace std;
class List
{
public:
- List();
+ List(vector <Location> i);
void draw(WINDOW * w);
void action();
private:
- vector <Character> men;
+ vector <Character> men;
+ vector <Location> impassable;
};
#endif