LeviLamina
Loading...
Searching...
No Matches
OptionsObserver.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/Observer.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Core { class SingleThreadedLock; }
11// clang-format on
12
13class OptionsObserver : public ::Core::Observer<::OptionsObserver, ::Core::SingleThreadedLock> {
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 2
18 virtual void onForceCloudSave() = 0;
19
20 // vIndex: 3
21 virtual void onOptionsLoadBegin() = 0;
22
23 // vIndex: 4
24 virtual void onOptionsLoadComplete() = 0;
25
26 // vIndex: 0
27 virtual ~OptionsObserver() /*override*/ = default;
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33
34 // NOLINTEND
35};
Definition Observer.h:9
Definition OptionsObserver.h:13