docs: add plugin setup guide

This commit is contained in:
2026-05-30 18:33:24 +12:00
parent f3db41c402
commit b61043a3fe
1776 changed files with 122386 additions and 2 deletions
@@ -0,0 +1,24 @@
#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,
};
}
}