Saxum/level.hh

18 lines
287 B
C++
Raw Normal View History

2014-10-20 16:38:29 +00:00
#ifndef LEVEL_HH_INCLUDED
#define LEVEL_HH_INCLUDED
#include <string>
#include "entity.hh"
class Level {
public:
2014-10-20 16:44:23 +00:00
Level(std::string filePath);
2014-10-20 16:38:29 +00:00
~Level();
void load();
private:
2014-10-20 16:44:23 +00:00
std::string filePath;
std::vector<Entity> entities;
};
2014-10-20 16:48:20 +00:00
#endif