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,23 @@
#pragma once
#include "RE/H/hkRefPtr.h"
#include "RE/H/hkTransform.h"
namespace RE
{
class hknpShape;
class hknpShapeInstance
{
public:
// members
hkTransformf m_transform; // 0x00
hkVector4f m_scale; // 0x40
hkRefPtr<const hknpShape> m_shape; // 0x50
std::uint16_t m_shapeTag; // 0x58
std::uint16_t m_destructionTag; // 0x5A
std::byte m_padding[30]; // 0x5C
std::byte m_pad7A[6]; // 0x7A
};
static_assert(sizeof(hknpShapeInstance) == 0x80);
}