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,36 @@
#pragma once
#include "RE/H/hkSignal.h"
namespace RE
{
class hknpShapeSignals
{
public:
enum class MutationFlagsEnum
{
kAABBChanged = 0x1,
kUpdateCollisionCaches = 0x2,
kRebuildCollisionCaches = 0x4
};
class ShapeDestroyedSignal :
public hkSignal0
{
public:
};
static_assert(sizeof(ShapeDestroyedSignal) == 0x08);
class ShapeMutatedSignal :
public hkSignal1<std::uint8_t>
{
public:
};
static_assert(sizeof(ShapeMutatedSignal) == 0x08);
// members
ShapeMutatedSignal m_shapeMutated; // 0x00
ShapeDestroyedSignal m_shapeDestroyed; // 0x08
};
static_assert(sizeof(hknpShapeSignals) == 0x10);
}