LeviLamina
Loading...
Searching...
No Matches
ScriptExplosionStartedBeforeEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/minecraft/events/ScriptExplosionStartedAfterEvent.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 ScriptExplosionStartedBeforeEvent : public ::ScriptModuleMinecraft::ScriptExplosionStartedAfterEvent {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<1, 1, bool> mCancel;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ScriptExplosionStartedBeforeEvent();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI ScriptExplosionStartedBeforeEvent(
32 ::ExplosionStartedEvent const& eventData,
34 );
35 // NOLINTEND
36
37public:
38 // static functions
39 // NOLINTBEGIN
40 MCAPI static ::Scripting::ClassBinding bind();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::ExplosionStartedEvent const& eventData, ::Scripting::WeakLifetimeScope const& scope);
47 // NOLINTEND
48};
49
50} // namespace ScriptModuleMinecraft
Definition WeakLifetimeScope.h:7
Definition ExplosionStartedEvent.h:15
Definition ScriptExplosionStartedAfterEvent.h:22
Definition ClassBinding.h:19