summaryrefslogtreecommitdiff
path: root/inc/Frame.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/Frame.hpp')
-rw-r--r--inc/Frame.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/Frame.hpp b/inc/Frame.hpp
index 4e4b57f..26a7364 100644
--- a/inc/Frame.hpp
+++ b/inc/Frame.hpp
@@ -27,15 +27,17 @@ class Frame
void refresh();
void move(int nRow, int nCol);
void center(Character &ch);
+ vector <Location> getImpassable(){return impassable;}
private:
int height, width;
int row, col;
bool hasSuper;
- bool colored = false;
+ bool filled;
WINDOW * w;
WINDOW * super;
vector <string> m;
+ vector <Location> impassable;
};
#endif