LeviLamina
Loading...
Searching...
No Matches
UIAnimAlpha.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/controls/UIAnim.h"
7
8// auto generated forward declare list
9// clang-format off
11class UIControl;
12class UIResolvedDef;
13// clang-format on
14
15class UIAnimAlpha : public ::UIAnim {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, float> mFromAlpha;
20 ::ll::TypedStorage<4, 4, float> mToAlpha;
21 ::ll::TypedStorage<4, 4, float> mAlphaValueToScale;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 UIAnimAlpha();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ::std::shared_ptr<::UIAnim> clone() /*override*/;
32
33 virtual bool tick(::UIControl& ownerControl, float const deltaTime) /*override*/;
34
35 virtual void _reset(::UIControl& ownerControl) /*override*/;
36
37 virtual ~UIAnimAlpha() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI UIAnimAlpha(::UIAnimationComponent& animComponent, ::UIResolvedDef const& def);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(::UIAnimationComponent& animComponent, ::UIResolvedDef const& def);
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI ::std::shared_ptr<::UIAnim> $clone();
56
57 MCAPI bool $tick(::UIControl& ownerControl, float const deltaTime);
58
59 MCAPI void $_reset(::UIControl& ownerControl);
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
Definition UIAnimAlpha.h:5
static MCAPI void ** $vftable()
Definition UIAnim.h:5
Definition UIAnimationComponent.h:5
Definition UIControl.h:5
Definition UIResolvedDef.h:5