LeviLamina
Loading...
Searching...
No Matches
VariableRef.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/screens/LayoutVariableType.h"
7
8// auto generated forward declare list
9// clang-format off
10class UIControl;
11struct LayoutComponent;
12// clang-format on
13
14class VariableRef {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, void*> mUnsafePointer;
19 ::ll::TypedStorage<8, 16, ::std::weak_ptr<::UIControl>> mControl;
20 ::ll::TypedStorage<8, 8, ::LayoutComponent*> mLayoutComponent;
21 ::ll::TypedStorage<1, 1, ::LayoutVariableType> mType;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 VariableRef();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI VariableRef(::std::weak_ptr<::UIControl> control, ::LayoutVariableType type);
32
33 MCAPI ~VariableRef();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::std::weak_ptr<::UIControl> control, ::LayoutVariableType type);
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCFOLD void $dtor();
46 // NOLINTEND
47};
Definition UIControl.h:5
Definition VariableRef.h:5
Definition LayoutComponent.h:5