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();
35
36public:
37 // virtual functions
38 // NOLINTBEGIN
39 virtual ::std::shared_ptr<::UIAnim> clone() /*override*/;
40
41 virtual bool tick(::UIControl& ownerControl, float const deltaTime) /*override*/;
42
43 virtual void _reset(::UIControl& ownerControl) /*override*/;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCAPI UIAnimLayout(::UIResolvedDef const& def, ::UIAnimLayout::ApplyTo applyTo);
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCAPI void* $ctor(::UIResolvedDef const& def, ::UIAnimLayout::ApplyTo applyTo);
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCAPI ::std::shared_ptr<::UIAnim> $clone();
62
63 MCAPI bool $tick(::UIControl& ownerControl, float const deltaTime);
64
65 MCAPI void $_reset(::UIControl& ownerControl);
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
Definition UIAnimLayout.h:5
static MCAPI void ** $vftable()
Definition UIAnim.h:5
Definition UIControl.h:5
Definition UIResolvedDef.h:5