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,21 @@
#pragma once
#include "RE/B/BGSSceneAction.h"
#include "RE/B/BSTArray.h"
namespace RE
{
class __declspec(novtable) BGSSceneActionStartScene :
public BGSSceneAction
{
public:
static constexpr auto RTTI{ RTTI::BGSSceneActionStartScene };
static constexpr auto VTABlE{ VTABLE::BGSSceneActionStartScene };
BSTArray<STARTSCENEACTIONDATA*> scenesA; // 20
BGSScene* scene; // 38
std::uint16_t sceneStartPhase; // 40
bool endSceneSayGreeting; // 42
};
static_assert(sizeof(BGSSceneActionStartScene) == 0x48);
}