aboutsummaryrefslogtreecommitdiff
path: root/backend/Dungeon.cpp
blob: 55dccece7cbef14a1e680dff6ff28e38f94605d7 (plain)
1
2
3
4
5
6
7
8
9
10
#include "Dungeon.h"

void Dungeon::update() {

}

void Dungeon::add_location(Location * location) {
	this->locations.push_back(location);
}