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