LeviLamina
Loading...
Searching...
No Matches
ScriptServerStateMonitor.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
10namespace ScriptModuleMinecraft {
11
12class ScriptServerStateMonitor {
13public:
14 // member variables
15 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ScriptServerStateMonitor& operator=(ScriptServerStateMonitor const&);
25 ScriptServerStateMonitor(ScriptServerStateMonitor const&);
26 ScriptServerStateMonitor();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ~ScriptServerStateMonitor();
32
33 virtual void _onReload();
34
35 virtual void _onScriptInitializationComplete();
36
37 virtual void _onScriptModuleStartupComplete();
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCNAPI void* $ctor(::ServerScriptManagerEvents& events);
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCNAPI void $dtor();
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCNAPI void $_onReload();
62
64
66
67
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCNAPI static void** $vftable();
74 // NOLINTEND
75};
76
77} // namespace ScriptModuleMinecraft
MCAPI ScriptServerStateMonitor(::ServerScriptManagerEvents &events)
MCAPI void * $ctor(::ServerScriptManagerEvents &events)
Definition ServerScriptManagerEvents.h:13
Definition Alias.h:14