Fixing minor bugs.

This commit is contained in:
Faerbit 2014-10-20 18:44:23 +02:00
parent 342dd9cbd6
commit eefe7e78c9

View File

@ -8,10 +8,10 @@
class Level {
public:
Level(string filePath);
Level(std::string filePath);
~Level();
void load();
private:
string filePath;
std::vector entities;
}
std::string filePath;
std::vector<Entity> entities;
};