Added Terrain to Level.
This commit is contained in:
parent
7f7398e295
commit
5adc9ae0cc
2
level.hh
2
level.hh
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user