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,31 @@
#pragma once
#include "RE/H/hkContainerHeapAllocator.h"
namespace RE
{
template <class K>
struct hkMultiMapOperations
{};
template <>
struct hkMultiMapOperations<std::int32_t>
{};
template <class K, class V = K, class O = hkMultiMapOperations<K>, class A = hkContainerHeapAllocator>
class hkMultiMap
{
public:
struct Pair
{
K key;
V value;
};
// members
Pair* elem; // 0x00
std::int32_t elemCount; // 0x08 - high bits are flags
std::int32_t hashMod; // 0x10 - capacity - 1
};
static_assert(sizeof(hkMultiMap<int>) == 0x10);
}