define resource loader

This commit is contained in:
Benjamin Palko 2025-06-21 10:44:10 -04:00
parent 81f252dd96
commit c18005d26b

View file

@ -0,0 +1,9 @@
#pragma once
#include <string>
class ResourceLoader {
/*
* Loads a file from the given path relative to project root.
*/
std::string Load(std::string path);
};