mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-22 19:39:42 +00:00
21 lines
350 B
C++
21 lines
350 B
C++
|
#ifndef OPENMW_TEST_SUITE_LOAD_SETTINGS_H
|
||
|
#define OPENMW_TEST_SUITE_LOAD_SETTINGS_H
|
||
|
|
||
|
#include <boost/filesystem/path.hpp>
|
||
|
|
||
|
namespace EsmLoaderTests
|
||
|
{
|
||
|
struct Settings
|
||
|
{
|
||
|
boost::filesystem::path mBasePath;
|
||
|
|
||
|
static Settings& impl()
|
||
|
{
|
||
|
static Settings value;
|
||
|
return value;
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|