LeviLamina
Loading...
Searching...
No Matches
CollectionItemComponent.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
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<4, 4, int> mCollectionIndex;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 CollectionItemComponent();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ::std::unique_ptr<::UIComponent> clone(::UIControl& cloneOwner) const /*override*/;
28
29 virtual void reset() /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI explicit CollectionItemComponent(::UIControl& owner);
36
37 MCFOLD int getCollectionIndex() const;
38
39 MCFOLD void setCollectionIndex(int collectionIndex);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::UIControl& owner);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI ::std::unique_ptr<::UIComponent> $clone(::UIControl& cloneOwner) const;
52
53 MCFOLD void $reset();
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition CollectionItemComponent.h:5
static MCAPI void ** $vftable()
Definition UIComponent.h:5
Definition UIControl.h:5