LeviLamina
Loading...
Searching...
No Matches
LevelListCacheObserver.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 LevelListCacheObserver : public ::Core::Observer<::LevelListCacheObserver, ::Core::SingleThreadedLock> {
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual void onLevelAdded(::std::string const& levelId);
18
19 virtual void onLevelUpdated(::std::string const& levelId);
20
21 virtual void onLevelDeleted(::std::string const& levelId);
22
23 virtual void onSummaryUpdated(::std::string const& levelId);
24
25 virtual void onStorageChanged();
26
27#ifdef LL_PLAT_S
28 virtual ~LevelListCacheObserver() /*override*/ = default;
29#else // LL_PLAT_C
30 virtual ~LevelListCacheObserver() /*override*/;
31#endif
32
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCNAPI void $dtor();
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44#ifdef LL_PLAT_C
45 MCNAPI void $onLevelAdded(::std::string const& levelId);
46
47 MCNAPI void $onLevelUpdated(::std::string const& levelId);
48
49 MCNAPI void $onLevelDeleted(::std::string const& levelId);
50
51 MCNAPI void $onSummaryUpdated(::std::string const& levelId);
52
53 MCNAPI void $onStorageChanged();
54#endif
55
56
57 // NOLINTEND
58};
Definition Observer.h:9
Definition SingleThreadedLock.h:7
Definition LevelListCacheObserver.h:13