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
namespace RE
{
class BGSObjectInstance;
namespace ActorEquipManagerEvent
{
enum class Type : std::int32_t
{
kEquip = 0x0,
kUnequip = 0x1
};
class Event
{
public:
// members
REX::TEnumSet<Type, std::uint16_t> changeType; // 00
const BGSObjectInstance* itemAffected; // 08
Actor* actorAffected; // 10
std::uint32_t stackID; // 18
};
static_assert(sizeof(Event) == 0x20);
}
}