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,25 @@
#pragma once
#include "RE/B/BGSMessageIcon.h"
#include "RE/B/BGSModelMaterialSwap.h"
#include "RE/B/BaseFormComponent.h"
#include "RE/T/TESIcon.h"
#include "RE/T/TESModelRDT.h"
namespace RE
{
class __declspec(novtable) TESBipedModelForm :
public BaseFormComponent // 000
{
public:
static constexpr auto RTTI{ RTTI::TESBipedModelForm };
static constexpr auto VTABLE{ VTABLE::TESBipedModelForm };
// members
BGSModelMaterialSwap worldModel[2]; // 008
TESIcon inventoryIcon[2]; // 088
BGSMessageIcon messageIcon[2]; // 0A8
TESModelRDT constraintTemplate; // 0D8
};
static_assert(sizeof(TESBipedModelForm) == 0x108);
}