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,31 @@
#pragma once
#include "RE/T/TESForm.h"
namespace RE
{
enum class DIALOGUE_TYPE;
class __declspec(novtable) BGSDialogueBranch :
public TESForm // 00
{
public:
static constexpr auto RTTI{ RTTI::BGSDialogueBranch };
static constexpr auto VTABLE{ VTABLE::BGSDialogueBranch };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kDLBR };
enum class Flag
{
kTopLevel = 0x0,
kBlocking = 0x1,
kExclusive = 0x2
};
// members
std::uint32_t flags; // 20
TESQuest* quest; // 28
TESTopic* startingTopic; // 30
REX::TEnumSet<DIALOGUE_TYPE, std::int32_t> type; // 38
};
static_assert(sizeof(BGSDialogueBranch) == 0x40);
}