summaryrefslogtreecommitdiff
path: root/inc/List.hpp
diff options
context:
space:
mode:
authortom <tom@ground-control>2015-11-23 17:05:27 -0600
committertom <tom@ground-control>2015-11-23 17:05:27 -0600
commit9d9c1d29dbcd802c89641b70b5574361e775c0e4 (patch)
treebd66508d2db620db21db51c15276055d492297ea /inc/List.hpp
parent8228cd7ef6156d87ccf33335466c86fa30dadd8b (diff)
added collision of trees and map border
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