You've already forked OpenRCT2-Unity
mirror of
https://github.com/izzy2lost/OpenRCT2-Unity.git
synced 2026-03-10 12:38:22 -07:00
17 lines
323 B
C++
17 lines
323 B
C++
#include <openrct2/core/Path.hpp>
|
|
#include "TestData.h"
|
|
|
|
namespace TestData
|
|
{
|
|
std::string GetBasePath()
|
|
{
|
|
return "testdata";
|
|
}
|
|
|
|
std::string GetParkPath(std::string name)
|
|
{
|
|
std::string path = Path::Combine(GetBasePath(), "parks", name);
|
|
return path;
|
|
}
|
|
} // namespace TestData
|