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,33 @@
#pragma once
#include "RE/B/BSSimpleList.h"
#include "RE/N/NiColor.h"
#include "RE/T/TESForm.h"
namespace RE
{
class TESRegionDataList;
class TESRegionPointList;
class __declspec(novtable) TESRegion :
public TESForm // 00
{
public:
static constexpr auto RTTI{ RTTI::TESRegion };
static constexpr auto VTABLE{ VTABLE::TESRegion };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kREGN };
// add
virtual bool Validate(); // 49
// members
TESRegionDataList* dataList; // 20
BSSimpleList<TESRegionPointList*>* pointLists; // 28
TESWorldSpace* worldSpace; // 30
TESWeather* currentWeather; // 38
NiColor emittanceColor; // 40
float lodDistanceModifier; // 4C
float occlusionAccuracy; // 50
};
static_assert(sizeof(TESRegion) == 0x58);
}