#pragma once #include "level.hh" #include "tinyxml2.hh" class Loader { public: Loader(); void load(std::string filePath, Level* level); private: void errorCheck(tinyxml2::XMLError error); };