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,29 @@
#pragma once
#include "RE/B/BSSimpleList.h"
#include "RE/P/PATH_DATA.h"
#include "RE/T/TESCondition.h"
#include "RE/T/TESForm.h"
namespace RE
{
class NiFormArray;
class __declspec(novtable) BGSCameraPath :
public TESForm // 00
{
public:
static constexpr auto RTTI{ RTTI::BGSCameraPath };
static constexpr auto VTABLE{ VTABLE::BGSCameraPath };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kCPTH };
// members
TESCondition conditions; // 20
BSSimpleList<BGSCameraShot*> shots; // 28
PATH_DATA data; // 38
NiFormArray* childPaths; // 40
BGSCameraPath* parentPath; // 48
BGSCameraPath* prevPath; // 50
};
static_assert(sizeof(BGSCameraPath) == 0x58);
}