mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
17 lines
288 B
C++
17 lines
288 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,
|
|
Flag_swim = 1 << 1,
|
|
};
|
|
}
|
|
|
|
#endif
|