diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-29 21:30:38 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-29 21:30:38 +0100 |
commit | a04cb74fee079e3ee43ae5fae32fc2674409822c (patch) | |
tree | 403e681a768ee68b54569e93d98e741878cd7975 /backend/Dungeon.h | |
parent | 9283e1eb66d6ff96b02f317e28cb6ff060953cdf (diff) |
implement movement
Diffstat (limited to 'backend/Dungeon.h')
-rw-r--r-- | backend/Dungeon.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/Dungeon.h b/backend/Dungeon.h index 88328c8..2d5fa61 100644 --- a/backend/Dungeon.h +++ b/backend/Dungeon.h @@ -8,6 +8,7 @@ class Dungeon { public: void update(); void add_location(Location *); + Location * get_start_location(); private: List<Location *> locations; |