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

17 lines
241 B
C++

#pragma once
namespace RE
{
enum class QuickContainerMode : std::int32_t
{
kLoot = 0x0,
kTeammate = 0x1,
kPowerArmor = 0x2,
kTurret = 0x3,
kWorkshop = 0x4,
kCrafting = 0x5,
kStealing = 0x6,
kStealingPowerArmor = 0x7
};
}