LeviLamina
Loading...
Searching...
No Matches
ScriptingEventCoordinator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/events/EventCoordinator.h"
7
8// auto generated forward declare list
9// clang-format off
12// clang-format on
13
14class ScriptingEventCoordinator : public ::EventCoordinator<::ScriptingEventListener> {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::ScriptingEventHandler>> mScriptingEventHandler;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 0
25 virtual ~ScriptingEventCoordinator() /*override*/ = default;
26 // NOLINTEND
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCFOLD void registerScriptingEventHandler(::std::unique_ptr<::ScriptingEventHandler>&& handler);
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCAPI static void** $vftable();
44 // NOLINTEND
45};
Definition EventCoordinator.h:6
Definition ScriptingEventCoordinator.h:14
Definition ScriptingEventHandler.h:12
Definition ScriptingEventListener.h:13