aboutsummaryrefslogtreecommitdiff
path: root/backend/Dungeon.h
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Dungeon.h')
-rw-r--r--backend/Dungeon.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/backend/Dungeon.h b/backend/Dungeon.h
index be8b52e..1eaa970 100644
--- a/backend/Dungeon.h
+++ b/backend/Dungeon.h
@@ -2,6 +2,7 @@
#include "Location.h"
#include "PtrList.h"
+#include "backend/ListIterator.h"
class Dungeon {
public:
@@ -9,12 +10,16 @@ public:
virtual ~Dungeon() = default;
public:
- void update();
+ void update(Location * player_location);
void add_location(Location *);
Location * get_start_location();
private:
PtrList<Location> locations;
+ Location * player_location = nullptr;
+private:
+ void update_attacks(ListRange<Enemy *> & enemies);
+ void update_movement();
};