#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
}