diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-03 08:49:01 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-03 08:49:01 -0400 |
commit | afb0ada00a2c50ea541ba6dc93058ccdb0286cdd (patch) | |
tree | 36b070d21fd237419a9f0a3bafb11add8fd68aa7 /include/world.hpp | |
parent | f102149e15ca1ac36cbb4e2627e5ce44f2d5273a (diff) |
ortho snapping, reset option
Diffstat (limited to 'include/world.hpp')
-rw-r--r-- | include/world.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/world.hpp b/include/world.hpp index 5d30161..2dd166a 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -320,11 +320,14 @@ private: public: // creates the arena with the world being left for it - Arena(World *leave, Player *p, Mob *m); + Arena(void); // frees memory ~Arena(void); + // starts a new fight?? + void fight(World *leave, const Player *p, Mob *m); + // attempts to exit the arena, returning what world the player should be in WorldSwitchInfo exitArena(Player *p); }; |