LeviLamina
Loading...
Searching...
No Matches
ScriptBlockHitInformation.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
10// auto generated forward declare list
11// clang-format off
13namespace ScriptModuleMinecraft { class ScriptBlock; }
14namespace Scripting { class WeakLifetimeScope; }
15namespace Scripting { struct InterfaceBinding; }
16// clang-format on
17
18namespace ScriptModuleMinecraft {
19
20struct ScriptBlockHitInformation {
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<4, 4, ::ScriptModuleMinecraft::ScriptFacing> mFace;
25 ::ll::TypedStorage<8, 32, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptBlock>> mBlock;
26 ::ll::TypedStorage<4, 12, ::Vec3> mFaceLocationAbsolute;
27 ::ll::TypedStorage<4, 12, ::Vec3> mFaceLocationRelative;
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 ScriptBlockHitInformation();
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI ScriptBlockHitInformation(
38 ::ProjectileHitEvent const& projectileHitEvent,
40 );
41 // NOLINTEND
42
43public:
44 // static functions
45 // NOLINTBEGIN
46 MCAPI static ::Scripting::InterfaceBinding bind();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::ProjectileHitEvent const& projectileHitEvent, ::Scripting::WeakLifetimeScope const& scope);
53 // NOLINTEND
54};
55
56} // namespace ScriptModuleMinecraft
Definition ScriptBlock.h:35
Definition WeakLifetimeScope.h:14
Definition ProjectileHitEvent.h:13
Definition InterfaceBinding.h:16