mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
1d94527a19
Settings::Values are initialized only for engine. Accessing them from other binaries leads to a crash.
12 lines
246 B
C++
12 lines
246 B
C++
#ifndef OPENMW_APPS_OPENMW_MWRENDER_ACTORUTIL_H
|
|
#define OPENMW_APPS_OPENMW_MWRENDER_ACTORUTIL_H
|
|
|
|
#include <string>
|
|
|
|
namespace MWRender
|
|
{
|
|
const std::string& getActorSkeleton(bool firstPerson, bool female, bool beast, bool werewolf);
|
|
}
|
|
|
|
#endif
|