mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 03:39:14 +00:00
18 lines
445 B
C++
18 lines
445 B
C++
|
#ifndef OPENMW_APPS_OPENMW_MWWORLD_MOVEMENTDIRECTION_H
|
||
|
#define OPENMW_APPS_OPENMW_MWWORLD_MOVEMENTDIRECTION_H
|
||
|
|
||
|
namespace MWWorld
|
||
|
{
|
||
|
using MovementDirectionFlags = unsigned char;
|
||
|
|
||
|
enum MovementDirectionFlag : MovementDirectionFlags
|
||
|
{
|
||
|
MovementDirectionFlag_Forward = 1 << 0,
|
||
|
MovementDirectionFlag_Back = 1 << 1,
|
||
|
MovementDirectionFlag_Left = 1 << 2,
|
||
|
MovementDirectionFlag_Right = 1 << 3,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|