diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-30 21:51:06 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-30 21:51:06 +0100 |
commit | 80ed1262bd654fe2de30389f97a985b5f2c1d783 (patch) | |
tree | 020b1b63d637e07882c9a10d81fe2ac04ce82bcc /backend/Dungeon.cpp | |
parent | c45a436fc594101f676cfabe90225d825d935fec (diff) |
add more containers and fix use after free
Diffstat (limited to 'backend/Dungeon.cpp')
-rw-r--r-- | backend/Dungeon.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/backend/Dungeon.cpp b/backend/Dungeon.cpp index e1cee70..d4df1ef 100644 --- a/backend/Dungeon.cpp +++ b/backend/Dungeon.cpp @@ -1,16 +1,6 @@ #include "Location.h" #include "Dungeon.h" #include "RNG.h" -#include "util.h" - - -Dungeon::Dungeon() { - -} - -Dungeon::~Dungeon() { - safe_free(this->locations); -} void Dungeon::update() { // TODO: iterators are broken (!????) |