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

15 lines
190 B
C++

#pragma once
namespace RE
{
enum class ACTOR_CONFIDENCE : std::uint32_t
{
kCowardly = 0x0,
kCautious = 0x1,
kAverage = 0x2,
kBrave = 0x3,
kFoolhardy = 0x4,
kCount = 0x5
};
}