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,21 @@
#pragma once
namespace RE
{
class MemoryStats;
class __declspec(novtable) IMemoryStoreBase
{
public:
static constexpr auto RTTI{ RTTI::IMemoryStoreBase };
static constexpr auto VTABLE{ VTABLE::IMemoryStoreBase };
virtual ~IMemoryStoreBase() = default; // 00
// add
virtual std::size_t Size(void const* a_mem) const = 0; // 01
virtual void GetMemoryStats(MemoryStats* a_stats) = 0; // 02
virtual bool ContainsBlockImpl(const void* a_block) const = 0; // 03
};
static_assert(sizeof(IMemoryStoreBase) == 0x8);
}