diff --git a/src/util/resourceloader.hpp b/src/util/resourceloader.hpp new file mode 100644 index 0000000..74b8f54 --- /dev/null +++ b/src/util/resourceloader.hpp @@ -0,0 +1,9 @@ +#pragma once + +#include +class ResourceLoader { + /* + * Loads a file from the given path relative to project root. + */ + std::string Load(std::string path); +};