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

25 lines
430 B
C++

#pragma once
namespace RE
{
namespace OtherInputEvents
{
enum class OTHER_EVENT_FLAG
{
kAll = static_cast<std::underlying_type_t<OTHER_EVENT_FLAG>>(-1),
kJournalTabs = 1 << 0,
kActivation = 1 << 1,
kFastTravel = 1 << 2,
kPOVChange = 1 << 3,
kVATS = 1 << 4,
kFavorites = 1 << 5,
kPipboyLight = 1 << 6,
kZKey = 1 << 7,
kRunning = 1 << 8,
kCursor = 1 << 9,
kSprinting = 1 << 10,
};
}
}