Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/B/bhkCharProxyManager.h
T
2026-05-30 18:33:24 +12:00

29 lines
754 B
C++

#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);
}