#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 locations; };