#ifndef WORLD_H #define WORLD_H #include #include "map.h" class World { public: World(const char* filename); const Map& getMap(int id) const; const Map& getStartingMap() const; std::pair getStartingPosition() const; private: std::map maps; int startMap; int startX; int startY; }; #endif /* end of include guard: WORLD_H */