13 lines
279 B
C++
13 lines
279 B
C++
#pragma once
|
|
|
|
#include "level.hh"
|
|
#include "tinyxml2.hh"
|
|
|
|
class Loader {
|
|
public:
|
|
Loader();
|
|
void load(std::string filePath, Level* level, std::string compositionsPath, std::string scriptPath);
|
|
private:
|
|
void errorCheck(tinyxml2::XMLError error);
|
|
};
|