aboutsummaryrefslogtreecommitdiff
path: root/backend/Dungeon.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-30 16:43:22 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-30 16:43:22 +0100
commit504d231429e2a5d2b31a876645b590bb4a6a03f6 (patch)
tree415c7d89cfcc8cdb5802a9ae0bdbd1bb71ca823c /backend/Dungeon.h
parent71380426426dffe787d1704a8fd639c4b1bbfad3 (diff)
WIP battle the memory leaks
Diffstat (limited to 'backend/Dungeon.h')
-rw-r--r--backend/Dungeon.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/backend/Dungeon.h b/backend/Dungeon.h
index 5740eb6..eaca6c3 100644
--- a/backend/Dungeon.h
+++ b/backend/Dungeon.h
@@ -6,6 +6,10 @@ class Location;
class Dungeon {
public:
+ Dungeon();
+ ~Dungeon();
+
+public:
void update();
void add_location(Location *);
Location * get_start_location();