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,23 @@
#pragma once
namespace RE
{
namespace TESQuestEvent
{
enum Type : std::int32_t
{
kUpdateQuestActiveStatus = 0x0,
kUpdateQuestEnableStatus = 0x1,
kUpdateQuestStageChange = 0x2,
kUpdateMiscQuestVisibility = 0x3
};
class Event
{
public:
TESQuestEvent::Type changeType; // 00
TESQuest* quest; // 08
};
static_assert(sizeof(Event) == 0x10);
}
}