mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
17 lines
304 B
C++
17 lines
304 B
C++
|
#ifndef GAME_MWBASE_ROTATIONFLAGS_H
|
||
|
#define GAME_MWBASE_ROTATIONFLAGS_H
|
||
|
|
||
|
namespace MWBase
|
||
|
{
|
||
|
using RotationFlags = unsigned short;
|
||
|
|
||
|
enum RotationFlag : RotationFlags
|
||
|
{
|
||
|
RotationFlag_none = 0,
|
||
|
RotationFlag_adjust = 1,
|
||
|
RotationFlag_inverseOrder = 1 << 1,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|