diff --git a/level.hh b/level.hh new file mode 100644 index 0000000..99f6b0e --- /dev/null +++ b/level.hh @@ -0,0 +1,17 @@ +#ifndef LEVEL_HH_INCLUDED +#define LEVEL_HH_INCLUDED + +#include +#include "entity.hh" + +#endif + +class Level { + public: + Level(string filePath); + ~Level(); + void load(); + private: + string filePath; + std::vector entities; +}