LeviLamina
Loading...
Searching...
No Matches
DebugComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/controls/UIComponent.h"
7
8// auto generated forward declare list
9// clang-format off
10class UIControl;
11// clang-format on
12
13class DebugComponent : public ::UIComponent {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 32, ::std::string> mDescription;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 DebugComponent();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ~DebugComponent() /*override*/ = default;
28
29 virtual ::std::unique_ptr<::UIComponent> clone(::UIControl& cloneOwner) const /*override*/;
30
31 virtual void reset() /*override*/;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI explicit DebugComponent(::UIControl& owner);
38
39 MCFOLD ::std::string const& getDescription() const;
40
41 MCFOLD void setDescription(::std::string const& description);
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::UIControl& owner);
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCAPI ::std::unique_ptr<::UIComponent> $clone(::UIControl& cloneOwner) const;
54
55 MCFOLD void $reset();
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition DebugComponent.h:5
static MCAPI void ** $vftable()
Definition UIComponent.h:5
Definition UIControl.h:5