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,22 @@
#pragma once
#include "RE/H/hkPtrAndInt.h"
namespace RE
{
class hkSlot
{
public:
static constexpr auto RTTI{ RTTI::hkSlot };
static constexpr auto VTABLE{ VTABLE::hkSlot };
// add
virtual ~hkSlot(); // 00
virtual std::uint32_t matchMethod(const void*, std::int32_t); // 01
// members
hkPtrAndInt<hkSlot, std::uint32_t, 3> m_next; // 0x08
void* m_object; // 0x10
};
static_assert(sizeof(hkSlot) == 0x18);
}