mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-19 22:02:57 +01: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
|