summary refs log tree commit diff stats
path: root/src/runtime_test.cpp
blob: c3961e782e182c185553d1efc5a7757ba35a088d (plain) (blame)
1
2
3
4
5
6
7
8
9
#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
}