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,45 @@
#pragma once
#include "RE/B/BGSKeywordForm.h"
#include "RE/B/BGSLocalizedString.h"
#include "RE/B/BSTArray.h"
#include "RE/T/TESForm.h"
namespace RE
{
class __declspec(novtable) BGSInstanceNamingRules :
public TESForm // 000
{
public:
static constexpr auto RTTI{ RTTI::BGSInstanceNamingRules };
static constexpr auto VTABLE{ VTABLE::BGSInstanceNamingRules };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kINNR };
class RuleData
{
public:
// members
BGSLocalizedString text; // 00
BGSKeywordForm keywords; // 08
float compareVal; // 28
std::int8_t propertyBridgeArrayIndex; // 2C
std::int8_t operatorType; // 2D
std::uint16_t index; // 2E
bool revert; // 30
};
static_assert(sizeof(RuleData) == 0x38);
class RuleSet :
public BSTArray<RuleData> // 00
{
public:
};
static_assert(sizeof(RuleSet) == 0x18);
// members
ENUM_FORM_ID type; // 020
RuleSet ruleSets[10]; // 028
BSTArray<const BGSInstanceNamingRules*> mergeSources; // 118
};
static_assert(sizeof(BGSInstanceNamingRules) == 0x130);
}