mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
49f8445f87
To replace creaturestats.hpp include in mwworld/class.hpp with forward declaration reducing total size of preprocessed code.
16 lines
225 B
C++
16 lines
225 B
C++
#ifndef OPENMW_MWMECHANICS_AISETTING_H
|
|
#define OPENMW_MWMECHANICS_AISETTING_H
|
|
|
|
namespace MWMechanics
|
|
{
|
|
enum class AiSetting
|
|
{
|
|
Hello = 0,
|
|
Fight = 1,
|
|
Flee = 2,
|
|
Alarm = 3
|
|
};
|
|
}
|
|
|
|
#endif
|