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,28 @@
#pragma once
#include "RE/B/BSTArray.h"
#include "RE/B/BSTHashMap.h"
#include "RE/B/bhkIWorldStepListener.h"
namespace RE
{
class bhkCharProxyController;
class __declspec(novtable) bhkCharProxyManager :
public bhkIWorldStepListener
{
public:
inline static constexpr auto RTTI{ RTTI::bhkCharProxyManager };
inline static constexpr auto VTABLE{ VTABLE::bhkCharProxyManager };
class ThreadLocalCharRBDeferredCmds;
virtual ~bhkCharProxyManager();
// members
BSTArray<bhkCharProxyController*> proxyControllersA;
BSTHashMap<bhkCharProxyController*, std::uint32_t> proxyControllerIndex;
BSTArray<ThreadLocalCharRBDeferredCmds> deferredCommandsA;
};
static_assert(sizeof(bhkCharProxyManager) == 0x70);
}