mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
046b5f83ee
A component to load ESM content files with limited support for record types and selection which of them to load. Supported record types are: ACTI, CELL, CONT, DOOR, GMST, LAND, STAT.
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
|