mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-05 15:55:45 +00:00
16 lines
260 B
C++
16 lines
260 B
C++
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_FLAGS_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_FLAGS_H
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
using Flags = unsigned short;
|
||
|
|
||
|
enum Flag : Flags
|
||
|
{
|
||
|
Flag_none = 0,
|
||
|
Flag_walk = 1 << 0,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|