#ifndef LEVEL_HH_INCLUDED #define LEVEL_HH_INCLUDED #include #include "entity.hh" #include "terrain.hh" class Level { public: Level(std::string filePath); ~Level(); void load(); private: std::string filePath; std::vector entities; Terrain terrain; }; #endif