aboutsummaryrefslogtreecommitdiff
path: root/backend/Dungeon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Dungeon.cpp')
-rw-r--r--backend/Dungeon.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/backend/Dungeon.cpp b/backend/Dungeon.cpp
index 3de2f11..66a1fa3 100644
--- a/backend/Dungeon.cpp
+++ b/backend/Dungeon.cpp
@@ -1,5 +1,16 @@
+#include "Location.h"
#include "Dungeon.h"
#include "RNG.h"
+#include "util.h"
+
+
+Dungeon::Dungeon() {
+
+}
+
+Dungeon::~Dungeon() {
+ safe_free(this->locations);
+}
void Dungeon::update() {