LeviLamina
Loading...
Searching...
No Matches
ScriptArrowShape.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/minecraft/debugdrawer/ScriptLineShape.h"
7
8// auto generated forward declare list
9// clang-format off
10struct ShapeDataPayload;
11namespace Scripting { struct ClassBinding; }
12// clang-format on
13
14namespace ScriptModuleDebugUtilities {
15
16class ScriptArrowShape : public ::ScriptModuleDebugUtilities::ScriptLineShape {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, float> mHeadRadius;
21 ::ll::TypedStorage<4, 4, float> mHeadLength;
22 ::ll::TypedStorage<4, 4, int> mSegments;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual void populatePacketData(::ShapeDataPayload& packet) const /*override*/;
29
30 virtual void applyUpdatedData(::ShapeDataPayload const& packet) /*override*/;
31
32 virtual ~ScriptArrowShape() /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI ScriptArrowShape();
39 // NOLINTEND
40
41public:
42 // static functions
43 // NOLINTBEGIN
44 MCAPI static ::Scripting::ClassBinding bind();
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor();
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCFOLD void $dtor();
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCAPI void $populatePacketData(::ShapeDataPayload& packet) const;
63
64 MCAPI void $applyUpdatedData(::ShapeDataPayload const& packet);
65
66
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
75
76} // namespace ScriptModuleDebugUtilities
Definition ScriptLineShape.h:17
Definition ClassBinding.h:19
Definition ShapeDataPayload.h:22