summaryrefslogtreecommitdiff
path: root/inc/list.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/list.hpp')
-rw-r--r--inc/list.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/list.hpp b/inc/list.hpp
index 240fa95..203ad7f 100644
--- a/inc/list.hpp
+++ b/inc/list.hpp
@@ -4,6 +4,7 @@
#include "creature.hpp"
#include "resource.hpp"
#include "window.hpp"
+#include "location.hpp"
class List
{
@@ -16,7 +17,7 @@ class List
//Window main;
std::vector<Resource> R;
std::vector<Creature> C;
- int ** L;
+ std::vector<Location> L;
};
#endif