blob: be8b52e02738ac91970e6a8783a8627b1b08a666 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include "Location.h"
#include "PtrList.h"
class Dungeon {
public:
Dungeon() = default;
virtual ~Dungeon() = default;
public:
void update();
void add_location(Location *);
Location * get_start_location();
private:
PtrList<Location> locations;
};
|