LeviLamina
Loading...
Searching...
No Matches
ScriptTextShape.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 ScriptTextShape : public ::ScriptModuleDebugUtilities::ScriptDebugShape {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 32, ::std::string> mText;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ScriptTextShape(ScriptTextShape const&);
26 ScriptTextShape();
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 ~ScriptTextShape() /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI ::ScriptModuleDebugUtilities::ScriptTextShape&
43
44 MCAPI void setText(::std::string text);
45 // NOLINTEND
46
47public:
48 // static functions
49 // NOLINTBEGIN
50 MCAPI static ::Scripting::ClassBinding bind();
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCAPI 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 ScriptDebugShape.h:24
Definition ScriptTextShape.h:16
Definition ClassBinding.h:19
Definition ShapeDataPayload.h:22