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,25 @@
#pragma once
#include "RE/B/BSPointerHandle.h"
#include "RE/H/hkVector4.h"
namespace RE
{
class TrapData
{
public:
// members
ObjectRefHandle trap; // 00
float damage; // 04
float leveledDamage; // 08
float minVelocity; // 0C
float pushBack; // 10
float deathPushback; // 14
float stagger; // 18
bool continuous; // 1C
hkVector4f pushbackVector; // 20
hkVector4f hitLocation; // 30
std::uint32_t material; // 40
};
static_assert(sizeof(TrapData) == 0x50);
}