31 lines
809 B
C++
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);
|
|
}
|