LeviLamina
Loading...
Searching...
No Matches
ScriptServerStateMonitor.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/pub_sub/Subscription.h"
7#include "mc/scripting/modules/minecraft/ScriptServerState.h"
8
9// auto generated forward declare list
10// clang-format off
12// clang-format on
13
14namespace ScriptModuleMinecraft {
15
16class ScriptServerStateMonitor {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, ::ScriptModuleMinecraft::ScriptServerState> mState;
21 ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mPreReloadSub;
22 ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mInitializeCompleteSub;
23 ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mStartupCompleteSub;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 ScriptServerStateMonitor();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~ScriptServerStateMonitor();
34
35 virtual void _onReload();
36
37 virtual void _onScriptInitializationComplete();
38
39 virtual void _onScriptModuleStartupComplete();
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI explicit ScriptServerStateMonitor(::ServerScriptManagerEvents& events);
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor(::ServerScriptManagerEvents& events);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCFOLD void $dtor();
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCFOLD void $_onReload();
64
65 MCFOLD void $_onScriptInitializationComplete();
66
67 MCFOLD void $_onScriptModuleStartupComplete();
68
69
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
78
79} // namespace ScriptModuleMinecraft
Definition ServerScriptManagerEvents.h:13