OpenRCT2/test/tests/TestData.cpp

17 lines
323 B
C++
Raw Normal View History

2017-01-11 18:15:24 +01:00
#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;
}
2018-05-04 22:40:09 +02:00
} // namespace TestData