Saxum/level.hh
2014-10-20 19:07:45 +02:00

20 lines
334 B
C++

#ifndef LEVEL_HH_INCLUDED
#define LEVEL_HH_INCLUDED
#include <string>
#include "entity.hh"
#include "terrain.hh"
class Level {
public:
Level(std::string filePath);
~Level();
void load();
private:
std::string filePath;
std::vector<Entity> entities;
Terrain terrain;
};
#endif