aboutsummaryrefslogtreecommitdiffstats
path: root/include/world.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-05-03 08:49:01 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-05-03 08:49:01 -0400
commitafb0ada00a2c50ea541ba6dc93058ccdb0286cdd (patch)
tree36b070d21fd237419a9f0a3bafb11add8fd68aa7 /include/world.hpp
parentf102149e15ca1ac36cbb4e2627e5ce44f2d5273a (diff)
ortho snapping, reset option
Diffstat (limited to 'include/world.hpp')
-rw-r--r--include/world.hpp5
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);
};