Cyrus Mod Loader
Loading...
Searching...
No Matches
ControlBar.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/Material.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/Window.h>
6
7class ControlBar : public Window {
8public:
9 float getFPosition() { // Property Generated Getter
10 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x248);
11 }
12
13 void setFPosition(float val) { // Property Generated Setter
14 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x248) = val;
15 }
16
17 Color getBaseColor() { // Property Generated Getter
18 return *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0x24C);
19 }
20
21 void setBaseColor(Color val) { // Property Generated Setter
22 *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0x24C) = val;
23 }
24
25 Color getBarColor() { // Property Generated Getter
26 return *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0x250);
27 }
28
29 void setBarColor(Color val) { // Property Generated Setter
30 *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0x250) = val;
31 }
32
33 bool getBDisplayVertical() { // Property Generated Getter
34 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x254);
35 }
36
37 void setBDisplayVertical(bool val) { // Property Generated Setter
38 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x254) = val;
39 }
40
41 SharedPointer<Material> * getPBarMaterial() { // Property Generated Getter
42 return reinterpret_cast<SharedPointer<Material> *>(reinterpret_cast<uintptr_t>(this) + 0x258);
43 }
44
45 void setPBarMaterial(SharedPointer<Material> * val) { // Property Generated Setter
46 *reinterpret_cast<SharedPointer<Material> **>(reinterpret_cast<uintptr_t>(this) + 0x258) = val;
47 }
48
49 SharedPointer<Material> * getPTopLeftMaterial() { // Property Generated Getter
50 return reinterpret_cast<SharedPointer<Material> *>(reinterpret_cast<uintptr_t>(this) + 0x268);
51 }
52
53 void setPTopLeftMaterial(SharedPointer<Material> * val) { // Property Generated Setter
54 *reinterpret_cast<SharedPointer<Material> **>(reinterpret_cast<uintptr_t>(this) + 0x268) = val;
55 }
56
57 SharedPointer<Material> * getPCenterMaterial() { // Property Generated Getter
58 return reinterpret_cast<SharedPointer<Material> *>(reinterpret_cast<uintptr_t>(this) + 0x278);
59 }
60
61 void setPCenterMaterial(SharedPointer<Material> * val) { // Property Generated Setter
62 *reinterpret_cast<SharedPointer<Material> **>(reinterpret_cast<uintptr_t>(this) + 0x278) = val;
63 }
64
65 SharedPointer<Material> * getPBottomRightMaterial() { // Property Generated Getter
66 return reinterpret_cast<SharedPointer<Material> *>(reinterpret_cast<uintptr_t>(this) + 0x288);
67 }
68
69 void setPBottomRightMaterial(SharedPointer<Material> * val) { // Property Generated Setter
70 *reinterpret_cast<SharedPointer<Material> **>(reinterpret_cast<uintptr_t>(this) + 0x288) = val;
71 }
72
73 void SetPosition(float a0) { // Function Generated
74 using FunctionPointerType = void (*)(ControlBar *self, float a0);
75 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x558C1C);
76 return inner(this, a0);
77 }
78
79 void SetBaseColor(Color a0) { // Function Generated
80 using FunctionPointerType = void (*)(ControlBar *self, Color a0);
81 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16319D0);
82 return inner(this, a0);
83 }
84
85 void SetBarColor(Color a0) { // Function Generated
86 using FunctionPointerType = void (*)(ControlBar *self, Color a0);
87 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16319C0);
88 return inner(this, a0);
89 }
90
91 void SetDisplayVertical(bool a0) { // Function Generated
92 using FunctionPointerType = void (*)(ControlBar *self, bool a0);
93 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16319E0);
94 return inner(this, a0);
95 }
96
97 void SetBarMaterial(Material a0) { // Function Generated
98 using FunctionPointerType = void (*)(ControlBar *self, Material a0);
99 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x162C480);
100 return inner(this, a0);
101 }
102
103 void SetBarMaterialByName(std::string a0) { // Function Generated
104 using FunctionPointerType = void (*)(ControlBar *self, std::string a0);
105 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16305B0);
106 return inner(this, a0);
107 }
108
109 void SetTopLeftMaterial(Material a0) { // Function Generated
110 using FunctionPointerType = void (*)(ControlBar *self, Material a0);
111 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x162C560);
112 return inner(this, a0);
113 }
114
115 void SetCenterMaterial(Material a0) { // Function Generated
116 using FunctionPointerType = void (*)(ControlBar *self, Material a0);
117 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x162BF40);
118 return inner(this, a0);
119 }
120
121 void SetBottomRightMaterial(Material a0) { // Function Generated
122 using FunctionPointerType = void (*)(ControlBar *self, Material a0);
123 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x162C020);
124 return inner(this, a0);
125 }
126
127};
Definition ControlBar.h:7
void setPTopLeftMaterial(SharedPointer< Material > *val)
Definition ControlBar.h:53
void SetBaseColor(Color a0)
Definition ControlBar.h:79
void setBDisplayVertical(bool val)
Definition ControlBar.h:37
void setPCenterMaterial(SharedPointer< Material > *val)
Definition ControlBar.h:61
void SetBarColor(Color a0)
Definition ControlBar.h:85
void setPBottomRightMaterial(SharedPointer< Material > *val)
Definition ControlBar.h:69
SharedPointer< Material > * getPTopLeftMaterial()
Definition ControlBar.h:49
SharedPointer< Material > * getPCenterMaterial()
Definition ControlBar.h:57
void SetBarMaterial(Material a0)
Definition ControlBar.h:97
void SetBottomRightMaterial(Material a0)
Definition ControlBar.h:121
Color getBarColor()
Definition ControlBar.h:25
bool getBDisplayVertical()
Definition ControlBar.h:33
SharedPointer< Material > * getPBarMaterial()
Definition ControlBar.h:41
void setFPosition(float val)
Definition ControlBar.h:13
void SetDisplayVertical(bool a0)
Definition ControlBar.h:91
void setBaseColor(Color val)
Definition ControlBar.h:21
void SetPosition(float a0)
Definition ControlBar.h:73
SharedPointer< Material > * getPBottomRightMaterial()
Definition ControlBar.h:65
float getFPosition()
Definition ControlBar.h:9
void SetBarMaterialByName(std::string a0)
Definition ControlBar.h:103
void setBarColor(Color val)
Definition ControlBar.h:29
void setPBarMaterial(SharedPointer< Material > *val)
Definition ControlBar.h:45
void SetTopLeftMaterial(Material a0)
Definition ControlBar.h:109
Color getBaseColor()
Definition ControlBar.h:17
void SetCenterMaterial(Material a0)
Definition ControlBar.h:115
Definition Material.h:8
Represents a Wizard101 Window, think anything you see on screen that is not a 3D model.
Definition Window.h:45
Definition shared.h:35