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