Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/T/TESRegion.h
T
2026-05-30 18:33:24 +12:00

34 lines
963 B
C++

#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);
}