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,33 @@
#pragma once
#include "RE/H/hkArray.h"
#include "RE/H/hkBool.h"
#include "RE/H/hkFlags.h"
#include "RE/H/hknpBodyId.h"
#include "RE/H/hknpShapeSignals.h"
namespace RE
{
class hknpShape;
class hknpShapeManager
{
public:
class MutableShapeInfo
{
public:
// members
hknpShapeManager* m_shapeManager; // 0x00
const hknpShape* m_shape; // 0x08
hkArray<hknpBodyId> m_bodyIds; // 0x10
hkFlags<hknpShapeSignals::MutationFlagsEnum, std::uint8_t> m_mutations; // 0x20
};
static_assert(sizeof(MutableShapeInfo) == 0x28);
// members
hkArray<MutableShapeInfo*> m_mutableShapeInfos; // 0x00
hkArray<MutableShapeInfo*> m_freeMutableShapeInfos; // 0x10
hkBool m_isAnyShapeMutated; // 0x20
};
static_assert(sizeof(hknpShapeManager) == 0x28);
}