aboutsummaryrefslogtreecommitdiff
path: root/backend/Dungeon.h
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Dungeon.h')
-rw-r--r--backend/Dungeon.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/backend/Dungeon.h b/backend/Dungeon.h
index 60faa09..88328c8 100644
--- a/backend/Dungeon.h
+++ b/backend/Dungeon.h
@@ -1,8 +1,16 @@
#pragma once
+#include "List.hpp"
+
+class Location;
+
class Dungeon {
public:
void update();
+ void add_location(Location *);
+
+private:
+ List<Location *> locations;
};