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

15 lines
174 B
C++

#pragma once
namespace RE
{
enum class ACTOR_LOS_LOCATION : std::int32_t
{
kNone = 0x0,
kEye = 0x1,
kHead = 0x2,
kTorse = 0x3,
kFeet = 0x4,
kCount = 0x5
};
}