LeviLamina
Loading...
Searching...
No Matches
ScriptCustomComponentRegistry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ScriptModuleMinecraft {
6
8public:
9 // ScriptCustomComponentRegistry inner types define
10 enum class State : int {
11 PreInit = 0,
12 ScriptLoaded = 1,
13 Finalized = 2,
14 ReloadingPreInit = 3,
15 ReloadingScriptLoaded = 4,
16 };
17
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~ScriptCustomComponentRegistry() = default;
35
36 // vIndex: 1
37 virtual void _onReload() = 0;
38
39 // vIndex: 2
40 virtual void _onScriptInitializationComplete() = 0;
41
42 // vIndex: 3
43 virtual void _onScriptModuleStartupComplete();
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
50 // NOLINTEND
51};
52
53} // namespace ScriptModuleMinecraft
Definition ScriptCustomComponentRegistry.h:7
Definition Alias.h:14