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,32 @@
#pragma once
#include "RE/B/BSTArray.h"
#include "RE/N/NiPoint3.h"
#include "RE/N/NiPointer.h"
#include "RE/T/TESPackage.h"
namespace RE
{
class NiAVObject;
class SpectatorThreatInfo;
class __declspec(novtable) SpectatorPackage :
public TESPackage // 000
{
public:
static constexpr auto RTTI{ RTTI::SpectatorPackage };
static constexpr auto VTABLE{ VTABLE::SpectatorPackage };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kPACK };
// members
std::time_t lastPathRequestTime; // 0C8
float timer; // 0D0
float conversationTimer; // 0D4
float eventRadius; // 0D8
bool flagCompleted; // 0DC
NiPoint3 eventCenter; // 0E0
BSTArray<SpectatorThreatInfo> threatInfoList; // 0F0
NiPointer<NiAVObject> debugGeometry; // 108
};
static_assert(sizeof(SpectatorPackage) == 0x110);
}