Added Terrain to Level.

This commit is contained in:
Faerbit 2014-10-20 19:07:45 +02:00
parent 7f7398e295
commit 5adc9ae0cc

View File

@ -3,6 +3,7 @@
#include <string> #include <string>
#include "entity.hh" #include "entity.hh"
#include "terrain.hh"
class Level { class Level {
public: public:
@ -12,6 +13,7 @@ class Level {
private: private:
std::string filePath; std::string filePath;
std::vector<Entity> entities; std::vector<Entity> entities;
Terrain terrain;
}; };
#endif #endif