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

31 lines
809 B
C++

#pragma once
#include "RE/B/BSFixedString.h"
#include "RE/B/BSTEvent.h"
#include "RE/B/BSTSingleton.h"
namespace RE
{
class UIAdvanceMenusFunctionCompleteEvent;
class __declspec(novtable) FlatScreenModel :
public BSTEventSink<UIAdvanceMenusFunctionCompleteEvent>, // 00
public BSTSingletonSDM<FlatScreenModel> // 08
{
public:
static constexpr auto RTTI{ RTTI::FlatScreenModel };
static constexpr auto VTABLE{ VTABLE::FlatScreenModel };
[[nodiscard]] static FlatScreenModel* GetSingleton()
{
static REL::Relocation<FlatScreenModel**> singleton{ ID::FlatScreenModel::Singleton };
return *singleton;
}
// members
BSFixedString customRendererName; // 10
void* model; // 18 - TODO
};
static_assert(sizeof(FlatScreenModel) == 0x20);
}