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,23 @@
#pragma once
namespace RE
{
class OBJ_BOOK
{
public:
union Teaches
{
ActorValueInfo* actorValueToAdvance;
SpellItem* spell;
BGSPerk* perk;
};
static_assert(sizeof(Teaches) == 0x8);
// members
std::int8_t flags; // 00
Teaches teaches; // 08
std::uint32_t textOffsetX; // 10
std::uint32_t textOffsetY; // 14
};
static_assert(sizeof(OBJ_BOOK) == 0x18);
}