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