Saxum/level.hh

18 lines
268 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"
#endif
class Level {
public:
Level(string filePath);
~Level();
void load();
private:
string filePath;
std::vector entities;
}