You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
304 B
C++
17 lines
304 B
C++
5 years ago
|
#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
|