aboutsummaryrefslogtreecommitdiff
path: root/backend/Dungeon.h
blob: 5740eb65575f1177f5f2ad31cea29a3873835cb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "List.h"

class Location;

class Dungeon {
public:
	void update();
	void add_location(Location *);
	Location * get_start_location();

private:
	List<Location *> locations;

};