CommonLibVR
UISaveLoadManager.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/B/BSFixedString.h"
5 #include "RE/B/BSTEvent.h"
6 #include "RE/B/BSTSingleton.h"
7 #include "RE/G/GFxValue.h"
8 
9 namespace RE
10 {
11  class BSSaveDataEvent;
12  struct BGSSaveLoadManagerEvent;
13 
15  public BSTSingletonSDM<UISaveLoadManager>, // 10
16  public BSTEventSink<BSSaveDataEvent>, // 00
17  public BSTEventSink<BGSSaveLoadManagerEvent> // 08
18  {
19  public:
20  inline static constexpr auto RTTI = RTTI_UISaveLoadManager;
21  inline static constexpr auto VTABLE = VTABLE_UISaveLoadManager;
22 
23  ~UISaveLoadManager() override; // 00
24 
25  // override (BSTEventSink<BSSaveDataEvent>)
26  BSEventNotifyControl ProcessEvent(const BSSaveDataEvent* a_event, BSTEventSource<BSSaveDataEvent>* a_eventSource) override; // 01
27 
28  // override (BSTEventSink<BGSSaveLoadManagerEvent>)
29  BSEventNotifyControl ProcessEvent(const BGSSaveLoadManagerEvent* a_event, BSTEventSource<BGSSaveLoadManagerEvent>* a_eventSource) override; // 01
30 
31  // members
33  GFxValue unk30; // 30
35  std::uint64_t unk50; // 50
36  std::uint64_t unk58; // 58
37  std::uint64_t unk60; // 60
38  private:
39  KEEP_FOR_RE()
40  };
41  static_assert(sizeof(UISaveLoadManager) == 0x68);
42 }
#define KEEP_FOR_RE()
Definition: PCH.h:713
Definition: BSScaleformExternalTexture.h:9
Definition: BSTEvent.h:143
Definition: GFxValue.h:92
Definition: UISaveLoadManager.h:18
static constexpr auto VTABLE
Definition: UISaveLoadManager.h:21
BSScaleformExternalTexture screenshotTexture
Definition: UISaveLoadManager.h:32
BSEventNotifyControl ProcessEvent(const BGSSaveLoadManagerEvent *a_event, BSTEventSource< BGSSaveLoadManagerEvent > *a_eventSource) override
~UISaveLoadManager() override
static constexpr auto RTTI
Definition: UISaveLoadManager.h:20
std::uint64_t unk58
Definition: UISaveLoadManager.h:36
GFxValue unk30
Definition: UISaveLoadManager.h:33
BSFixedString unk48
Definition: UISaveLoadManager.h:34
std::uint64_t unk60
Definition: UISaveLoadManager.h:37
std::uint64_t unk50
Definition: UISaveLoadManager.h:35
BSEventNotifyControl ProcessEvent(const BSSaveDataEvent *a_event, BSTEventSource< BSSaveDataEvent > *a_eventSource) override
Definition: AbsorbEffect.h:6
constexpr REL::ID RTTI_UISaveLoadManager(static_cast< std::uint64_t >(688968))
constexpr std::array< REL::ID, 2 > VTABLE_UISaveLoadManager
Definition: Offsets_VTABLE.h:12949
BSEventNotifyControl
Definition: BSTEvent.h:12
Definition: BSTSingleton.h:50