mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 19:02:04 -05:00
16 lines
323 B
C++
16 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
|