#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, // 00 public BSTSingletonSDM // 08 { public: static constexpr auto RTTI{ RTTI::FlatScreenModel }; static constexpr auto VTABLE{ VTABLE::FlatScreenModel }; [[nodiscard]] static FlatScreenModel* GetSingleton() { static REL::Relocation singleton{ ID::FlatScreenModel::Singleton }; return *singleton; } // members BSFixedString customRendererName; // 10 void* model; // 18 - TODO }; static_assert(sizeof(FlatScreenModel) == 0x20); }