1 /*****************************************************************************
2  * Copyright (c) 2014-2018 OpenRCT2 developers
3  *
4  * For a complete list of all authors, please refer to contributors.md
5  * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
6  *
7  * OpenRCT2 is licensed under the GNU General Public License version 3.
8  *****************************************************************************/
9 
10 #include <string>
11 
12 #pragma once
13 
14 namespace TestData
15 {
16     std::string GetBasePath();
17     std::string GetParkPath(std::string name);
18 }; // namespace TestData
19