LeviLamina
Loading...
Searching...
No Matches
UIAnimLayout.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/LayoutOffset.h"
7#include "mc/client/gui/controls/UIAnim.h"
8
9// auto generated forward declare list
10// clang-format off
11class UIControl;
12class UIResolvedDef;
13// clang-format on
14
15class UIAnimLayout : public ::UIAnim {
16public:
17 // UIAnimLayout inner types define
18 enum class ApplyTo : int {
19 Offset = 0,
20 Size = 1,
21 };
22
23public:
24 // member variables
25 // NOLINTBEGIN
26 ::ll::TypedStorage<4, 4, ::UIAnimLayout::ApplyTo> mApplyTo;
27 ::ll::TypedStorage<8, 56, ::ui::LayoutOffset> mInterpolatedOffset;
28 ::ll::TypedStorage<8, 56, ::ui::LayoutOffset> mFromOffset;
29 ::ll::TypedStorage<8, 56, ::ui::LayoutOffset> mToOffset;
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
34 UIAnimLayout& operator=(UIAnimLayout const&);
35 UIAnimLayout();
36
37public:
38 // virtual functions
39 // NOLINTBEGIN
40 virtual ::std::shared_ptr<::UIAnim> clone() /*override*/;
41
42 virtual bool tick(::UIControl& ownerControl, float const deltaTime) /*override*/;
43
44 virtual void _reset(::UIControl& ownerControl) /*override*/;
45
46 virtual ~UIAnimLayout() /*override*/ = default;
47 // NOLINTEND
48
49public:
50 // member functions
51 // NOLINTBEGIN
52 MCAPI UIAnimLayout(::UIAnimLayout const&);
53
54 MCAPI UIAnimLayout(::UIResolvedDef const& def, ::UIAnimLayout::ApplyTo applyTo);
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCAPI void* $ctor(::UIAnimLayout const&);
61
62 MCAPI void* $ctor(::UIResolvedDef const& def, ::UIAnimLayout::ApplyTo applyTo);
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI ::std::shared_ptr<::UIAnim> $clone();
69
70 MCAPI bool $tick(::UIControl& ownerControl, float const deltaTime);
71
72 MCAPI void $_reset(::UIControl& ownerControl);
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftable();
79 // NOLINTEND
80};
Definition UIAnimLayout.h:5
static MCAPI void ** $vftable()
Definition UIAnim.h:5
Definition UIControl.h:5
Definition UIResolvedDef.h:5