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,26 @@
#pragma once
#include "RE/B/BGSDestructibleObjectForm.h"
#include "RE/B/BGSModelMaterialSwap.h"
#include "RE/B/BGSPickupPutdownSounds.h"
#include "RE/S/SpellItem.h"
#include "RE/T/TESValueForm.h"
#include "RE/T/TESWeightForm.h"
namespace RE
{
class __declspec(novtable) ScrollItem :
public SpellItem, // 000
public BGSModelMaterialSwap, // 130
public BGSDestructibleObjectForm, // 170
public BGSPickupPutdownSounds, // 180
public TESWeightForm, // 198
public TESValueForm // 1A8
{
public:
static constexpr auto RTTI{ RTTI::ScrollItem };
static constexpr auto VTABLE{ VTABLE::ScrollItem };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kSCRL };
};
static_assert(sizeof(ScrollItem) == 0x1B8);
}