summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authortom <tom@ground-control>2015-11-18 21:24:43 -0600
committertom <tom@ground-control>2015-11-18 21:24:43 -0600
commit96038fbcb01261dfc4b786562b1ddb702c991483 (patch)
tree59d4a0fbb0956a750c592575b0ee03265a72c16f /inc
parent0fc9844e4e81f9f78886a75eb15e3cf17d6adc36 (diff)
map successfully imports, need to do coloring next
Diffstat (limited to 'inc')
-rw-r--r--inc/Frame.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/Frame.hpp b/inc/Frame.hpp
index 0bfce2c..ad9ef99 100644
--- a/inc/Frame.hpp
+++ b/inc/Frame.hpp
@@ -6,6 +6,7 @@
#include <string>
#include <fstream>
#include <iostream>
+#include <vector>
using namespace std;
@@ -35,9 +36,10 @@ class Frame
int height, width;
int row, col;
bool hasSuper;
+ bool colored = false;
WINDOW * w;
WINDOW * super;
- string m;
+ vector <string> m;
};
#endif