diff --git a/level.hh b/level.hh index 99f6b0e..e974136 100644 --- a/level.hh +++ b/level.hh @@ -8,10 +8,10 @@ class Level { public: - Level(string filePath); + Level(std::string filePath); ~Level(); void load(); private: - string filePath; - std::vector entities; -} + std::string filePath; + std::vector entities; +};