diff options
Diffstat (limited to 'include/world.h')
-rw-r--r-- | include/world.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/world.h b/include/world.h index a2414e6..6c0395d 100644 --- a/include/world.h +++ b/include/world.h @@ -63,6 +63,12 @@ protected: void singleDetect(Entity *e); /* + * Deletes all entities in the world. + */ + + void deleteEntities(void); + + /* * The size of the line array. This is set once by World->generate(). */ @@ -205,6 +211,7 @@ private: World *exit; public: Arena(World *leave,Player *p); + ~Arena(void); World *exitArena(Player *p); }; |