From 5adc9ae0cc5881b06d7026d53cdce07f73a2bf32 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Mon, 20 Oct 2014 19:07:45 +0200 Subject: [PATCH] Added Terrain to Level. --- level.hh | 2 ++ 1 file changed, 2 insertions(+) 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