mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
17 lines
320 B
C++
17 lines
320 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,
|
|
Flag_openDoor = 1 << 2,
|
|
};
|
|
}
|
|
|
|
#endif
|