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,28 @@
#pragma once
#include "RE/B/BGSForcedLocRefType.h"
#include "RE/B/BGSModelMaterialSwap.h"
#include "RE/B/BGSNavmeshableObject.h"
#include "RE/B/BGSPropertySheet.h"
#include "RE/T/TESBoundObject.h"
#include "RE/T/TESObjectSTATData.h"
namespace RE
{
class __declspec(novtable) TESObjectSTAT :
public TESBoundObject, // 00
public BGSModelMaterialSwap, // 68
public BGSPropertySheet, // A8
public BGSForcedLocRefType, // B8
public BGSNavmeshableObject // C8
{
public:
static constexpr auto RTTI{ RTTI::TESObjectSTAT };
static constexpr auto VTABLE{ VTABLE::TESObjectSTAT };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kSTAT };
// members
TESObjectSTATData data; // D0
};
static_assert(sizeof(TESObjectSTAT) == 0xE8);
}