Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/A/ACTOR_STANCE.h
T
2026-05-30 18:33:24 +12:00

16 lines
211 B
C++

#pragma once
namespace RE
{
enum class ACTOR_STANCE : std::uint32_t
{
kNormal = 0x0,
kSneaking = 0x1,
kCoverVeryLow = 0x2,
kCoverLow = 0x3,
kCoverMid = 0x4,
kCoverHigh = 0x5,
kCount = 0x6
};
}