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,31 @@
#pragma once
#include "RE/B/BSPointerHandle.h"
#include "RE/B/BSTArray.h"
#include "RE/N/NiPoint3.h"
#include "RE/T/TESPackage.h"
namespace RE
{
class __declspec(novtable) FleePackage :
public TESPackage // 000
{
public:
static constexpr auto RTTI{ RTTI::FleePackage };
static constexpr auto VTABLE{ VTABLE::FleePackage };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kPACK };
// members
BSTArray<ObjectRefHandle> avoidRefs; // 0C8
NiPoint3 fleePoint; // 0E0
float fleeTimer; // 0EC
ObjectRefHandle teleportDoor; // 0F0
ObjectRefHandle refFleeTo; // 0F4
bool evaluatePoint; // 0F8
bool combatMode; // 0F9
bool fleeSucceeded; // 0FA
bool knowstarget; // 0FB
bool usehorse; // 0FC
};
static_assert(sizeof(FleePackage) == 0x100);
}