diff --git a/level.hh b/level.hh index 55d2bf7..153caf7 100644 --- a/level.hh +++ b/level.hh @@ -3,6 +3,7 @@ #include #include "entity.hh" +#include "terrain.hh" class Level { public: @@ -12,6 +13,7 @@ class Level { private: std::string filePath; std::vector entities; + Terrain terrain; }; #endif