blob: c3961e782e182c185553d1efc5a7757ba35a088d (
plain) (
tree)
|
|
#include "runtime.h"
std::string Runtime::getResourcePath(std::string_view name) {
#ifdef MSVC
return std::string("res/") + std::string(name);
#else
return std::string("../res/") + std::string(name);
#endif
}
|