19 lines
443 B
C++
19 lines
443 B
C++
#pragma once
|
|
|
|
#include "RE/B/BSLensFlareRenderData.h"
|
|
#include "RE/T/TESForm.h"
|
|
|
|
namespace RE
|
|
{
|
|
class __declspec(novtable) BGSLensFlare :
|
|
public TESForm, // 00
|
|
public BSLensFlareRenderData // 20
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::BGSLensFlare };
|
|
static constexpr auto VTABLE{ VTABLE::BGSLensFlare };
|
|
static constexpr auto FORM_ID{ ENUM_FORM_ID::kLENS };
|
|
};
|
|
static_assert(sizeof(BGSLensFlare) == 0x50);
|
|
}
|