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,46 @@
#pragma once
#include "RE/B/BGSAttachParentArray.h"
#include "RE/B/BSTArray.h"
#include "RE/T/TESObjectACTI.h"
#include "RE/W/WorkbenchData.h"
namespace RE
{
class BSFurnitureMarker;
class TESContainer;
class __declspec(novtable) TESFurniture :
public TESObjectACTI // 000
{
public:
static constexpr auto RTTI{ RTTI::TESFurniture };
static constexpr auto VTABLE{ VTABLE::TESFurniture };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kFURN };
class EntryPointData
{
public:
// members
std::uint32_t entryPoint; // 0
std::uint32_t flags; // 4
};
static_assert(sizeof(EntryPointData) == 0x8);
[[nodiscard]] TESContainer* GetContainer()
{
using func_t = decltype(&TESFurniture::GetContainer);
static REL::Relocation<func_t> func{ ID::TESFurniture::GetContainer };
return func(this);
}
// members
BSTArray<EntryPointData> entryPointDataArray; // 148
BGSAttachParentArray attachParents; // 160
WorkbenchData wbData; // 178
std::uint32_t furnFlags; // 17C
TESForm* associatedForm; // 180
BSTArray<BSFurnitureMarker> markersArray; // 188
};
static_assert(sizeof(TESFurniture) == 0x1A0);
}