LeviLamina
Loading...
Searching...
No Matches
ScriptItemUseOnEvent.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
12class BlockPos;
13class BlockSource;
14namespace ScriptModuleMinecraft { class ScriptBlock; }
15namespace ScriptModuleMinecraft { class ScriptItemStack; }
16namespace Scripting { class WeakLifetimeScope; }
17namespace Scripting { struct ClassBinding; }
18// clang-format on
19
20namespace ScriptModuleMinecraft {
21
23public:
24 // member variables
25 // NOLINTBEGIN
26 ::ll::TypedStorage<8, 32, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStack>>
27 mScriptItem;
28 ::ll::TypedStorage<4, 4, ::ScriptModuleMinecraft::ScriptFacing> mFace;
29 ::ll::TypedStorage<4, 12, ::Vec3> mFaceLocationAbsolute;
30 ::ll::TypedStorage<4, 12, ::Vec3> mFaceLocationRelative;
31 ::ll::TypedStorage<8, 32, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptBlock>> mBlock;
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
38
39public:
40 // member functions
41 // NOLINTBEGIN
43
46 uchar face,
47 ::Vec3 faceLocation,
48 ::BlockPos blockPosition,
49 ::BlockSource& region,
51 );
52
54 // NOLINTEND
55
56public:
57 // static functions
58 // NOLINTBEGIN
59 MCAPI static ::Scripting::ClassBinding bind();
60 // NOLINTEND
61
62public:
63 // constructor thunks
64 // NOLINTBEGIN
65 MCAPI void* $ctor(::ScriptModuleMinecraft::ScriptItemUseOnEvent const&);
66
67 MCAPI void* $ctor(
69 uchar face,
70 ::Vec3 faceLocation,
71 ::BlockPos blockPosition,
72 ::BlockSource& region,
74 );
75 // NOLINTEND
76
77public:
78 // destructor thunk
79 // NOLINTBEGIN
80 MCAPI void $dtor();
81 // NOLINTEND
82};
83
84} // namespace ScriptModuleMinecraft
Definition BlockPos.h:17
Definition BlockSource.h:66
Definition StrongTypedObjectHandle.h:8
Definition WeakLifetimeScope.h:7
Definition Vec3.h:10
Definition ScriptItemUseOnEvent.h:22