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