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

29 lines
672 B
C++

#pragma once
#include "RE/B/BGSPropertySheet.h"
#include "RE/C/CLASS_DATA.h"
#include "RE/T/TESDescription.h"
#include "RE/T/TESForm.h"
#include "RE/T/TESFullName.h"
#include "RE/T/TESTexture.h"
namespace RE
{
class __declspec(novtable) TESClass :
public TESForm, // 00
public TESFullName, // 20
public TESDescription, // 30
public TESTexture, // 48
public BGSPropertySheet // 58
{
public:
static constexpr auto RTTI{ RTTI::TESClass };
static constexpr auto VTABLE{ VTABLE::TESClass };
static constexpr auto FORM_ID{ ENUM_FORM_ID::kCLAS };
// members
CLASS_DATA data; // 68
};
static_assert(sizeof(TESClass) == 0x70);
}