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