LeviLamina
Loading...
Searching...
No Matches
ScriptPlayerInteractWithBlockAfterEvent.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#include "mc/scripting/modules/minecraft/ScriptFacing.h"
8#include "mc/scripting/modules/minecraft/events/ScriptPlayerInteractWithBlockEvent.h"
9
10// auto generated forward declare list
11// clang-format off
12class Vec3;
13namespace ScriptModuleMinecraft { class ScriptBlock; }
14namespace ScriptModuleMinecraft { class ScriptItemStack; }
15namespace ScriptModuleMinecraft { class ScriptPlayer; }
16namespace Scripting { struct ClassBinding; }
17// clang-format on
18
19namespace ScriptModuleMinecraft {
20
21struct ScriptPlayerInteractWithBlockAfterEvent : public ::ScriptModuleMinecraft::ScriptPlayerInteractWithBlockEvent {
22public:
23 // member variables
24 // NOLINTBEGIN
25 ::ll::TypedStorage<
26 8,
27 40,
28 ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStack>>>
29 mBeforeItemStack;
30 ::ll::TypedStorage<
31 8,
32 40,
33 ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStack>>>
34 mAfterItemStack;
35 // NOLINTEND
36
37public:
38 // prevent constructor by default
39 ScriptPlayerInteractWithBlockAfterEvent();
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI
45 ScriptPlayerInteractWithBlockAfterEvent(::ScriptModuleMinecraft::ScriptPlayerInteractWithBlockAfterEvent const&);
46
47 MCAPI ScriptPlayerInteractWithBlockAfterEvent(
52 ::ScriptModuleMinecraft::ScriptFacing blockFace,
53 ::Vec3 faceLocation,
54 bool isFirstEvent
55 );
56
57 MCAPI ::ScriptModuleMinecraft::ScriptPlayerInteractWithBlockAfterEvent&
59
60 MCAPI ::ScriptModuleMinecraft::ScriptPlayerInteractWithBlockAfterEvent&
62 // NOLINTEND
63
64public:
65 // static functions
66 // NOLINTBEGIN
67 MCAPI static ::Scripting::ClassBinding bind();
68 // NOLINTEND
69
70public:
71 // constructor thunks
72 // NOLINTBEGIN
74
75 MCAPI void* $ctor(
80 ::ScriptModuleMinecraft::ScriptFacing blockFace,
81 ::Vec3 faceLocation,
82 bool isFirstEvent
83 );
84 // NOLINTEND
85};
86
87} // namespace ScriptModuleMinecraft
Definition ScriptBlock.h:35
Definition ScriptItemStack.h:32
Definition ScriptPlayer.h:56
Definition StrongTypedObjectHandle.h:8
Definition Vec3.h:10
Definition ScriptPlayerInteractWithBlockAfterEvent.h:21
Definition ScriptPlayerInteractWithBlockEvent.h:19
Definition ClassBinding.h:19