LeviLamina
Loading...
Searching...
No Matches
ScriptWatchdogTerminateBeforeEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/events/WatchdogTerminateReason.h"
7
8// auto generated forward declare list
9// clang-format off
11namespace Scripting { class WeakLifetimeScope; }
12namespace Scripting { struct ClassBinding; }
13// clang-format on
14
15namespace ScriptModuleMinecraft {
16
17struct ScriptWatchdogTerminateBeforeEvent {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<4, 4, ::WatchdogTerminateReason> mTerminateReason;
22 ::ll::TypedStorage<1, 1, bool> mCancel;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 ScriptWatchdogTerminateBeforeEvent();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI ScriptWatchdogTerminateBeforeEvent(
33 ::BeforeWatchdogTerminateEvent const& beforeWatchdogTerminateEvent,
35 );
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41 MCAPI static ::Scripting::ClassBinding bind();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void*
48 $ctor(::BeforeWatchdogTerminateEvent const& beforeWatchdogTerminateEvent, ::Scripting::WeakLifetimeScope const&);
49 // NOLINTEND
50};
51
52} // namespace ScriptModuleMinecraft
Definition WeakLifetimeScope.h:14
Definition BeforeWatchdogTerminateEvent.h:9
Definition ClassBinding.h:19