aboutsummaryrefslogtreecommitdiffstats
path: root/include/world.hpp
diff options
context:
space:
mode:
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);
};