Adding level.hh

This commit is contained in:
Faerbit 2014-10-20 18:38:29 +02:00
parent 70662679c1
commit 08e44a14f6

17
level.hh Normal file
View File

@ -0,0 +1,17 @@
#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;
}