mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-28 18:45:33 +00:00
15 lines
260 B
C++
15 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
|