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

14 lines
160 B
C++

#pragma once
namespace RE
{
enum class SUBTITLE_PRIORITY : std::int32_t
{
kLow = 0x0,
kNormal = 0x1,
kHigh = 0x2,
kForce = 0x3,
kTotal = 0x4
};
}