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 { class Level {
public: public:
Level(string filePath); Level(std::string filePath);
~Level(); ~Level();
void load(); void load();
private: private:
string filePath; std::string filePath;
std::vector entities; std::vector<Entity> entities;
} };