LeviLamina
Loading...
Searching...
No Matches
ScriptPlayerInteractWithBlockEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7#include "mc/deps/scripting/lifetime_registry/StrongTypedObjectHandle.h"
8#include "mc/scripting/modules/minecraft/ScriptFacing.h"
9#include "mc/scripting/modules/minecraft/events/ScriptPlayerInteractEvent.h"
10
11// auto generated forward declare list
12// clang-format off
13namespace ScriptModuleMinecraft { class ScriptBlock; }
14namespace ScriptModuleMinecraft { class ScriptPlayer; }
15// clang-format on
16
17namespace ScriptModuleMinecraft {
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 32, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptBlock>> mBlock;
24 ::ll::TypedStorage<4, 4, ::ScriptModuleMinecraft::ScriptFacing> mBlockFace;
25 ::ll::TypedStorage<4, 12, ::Vec3> mFaceLocationAbsolute;
26 ::ll::TypedStorage<4, 12, ::Vec3> mFaceLocationRelative;
27 ::ll::TypedStorage<1, 1, bool> mIsFirstEvent;
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
34
35public:
36 // member functions
37 // NOLINTBEGIN
39
43 ::ScriptModuleMinecraft::ScriptFacing blockFace,
44 ::Vec3 faceLocation,
45 bool isFirstEvent
46 );
47
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
55
56 MCAPI void* $ctor(
59 ::ScriptModuleMinecraft::ScriptFacing blockFace,
60 ::Vec3 faceLocation,
61 bool isFirstEvent
62 );
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68 MCFOLD void $dtor();
69 // NOLINTEND
70};
71
72} // namespace ScriptModuleMinecraft
Definition StrongTypedObjectHandle.h:8
Definition Vec3.h:10
Definition ScriptPlayerInteractEvent.h:15
Definition ScriptPlayerInteractWithBlockEvent.h:19