Cyrus Mod Loader
Loading...
Searching...
No Matches
GradientWidgetBackground.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Classes/WidgetBackground.h>
5
7public:
8 Color getTopLeftColor() { // Property Generated Getter
9 return *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0xE0);
10 }
11
12 void setTopLeftColor(Color val) { // Property Generated Setter
13 *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0xE0) = val;
14 }
15
16 Color getTopRightColor() { // Property Generated Getter
17 return *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0xE4);
18 }
19
20 void setTopRightColor(Color val) { // Property Generated Setter
21 *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0xE4) = val;
22 }
23
24 Color getBottomLeftColor() { // Property Generated Getter
25 return *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0xE8);
26 }
27
28 void setBottomLeftColor(Color val) { // Property Generated Setter
29 *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0xE8) = val;
30 }
31
32 Color getBottomRightColor() { // Property Generated Getter
33 return *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0xEC);
34 }
35
36 void setBottomRightColor(Color val) { // Property Generated Setter
37 *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0xEC) = val;
38 }
39
40};
Definition GradientWidgetBackground.h:6
Color getBottomLeftColor()
Definition GradientWidgetBackground.h:24
Color getTopLeftColor()
Definition GradientWidgetBackground.h:8
Color getBottomRightColor()
Definition GradientWidgetBackground.h:32
void setBottomLeftColor(Color val)
Definition GradientWidgetBackground.h:28
void setTopRightColor(Color val)
Definition GradientWidgetBackground.h:20
void setTopLeftColor(Color val)
Definition GradientWidgetBackground.h:12
void setBottomRightColor(Color val)
Definition GradientWidgetBackground.h:36
Color getTopRightColor()
Definition GradientWidgetBackground.h:16
Definition WidgetBackground.h:6
Definition shared.h:35