Saxum/level.hh
2014-10-20 18:44:23 +02:00

18 lines
287 B
C++

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