Cyrus Mod Loader
Loading...
Searching...
No Matches
ShoppingColorModifiers.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 Vector<float> getBoysPrimaryColors() { // Property Generated Getter
8 return *reinterpret_cast<Vector<float>*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setBoysPrimaryColors(Vector<float> val) { // Property Generated Setter
12 *reinterpret_cast<Vector<float>*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 Vector<float> getBoysSecondaryColors() { // Property Generated Getter
16 return *reinterpret_cast<Vector<float>*>(reinterpret_cast<uintptr_t>(this) + 0x60);
17 }
18
19 void setBoysSecondaryColors(Vector<float> val) { // Property Generated Setter
20 *reinterpret_cast<Vector<float>*>(reinterpret_cast<uintptr_t>(this) + 0x60) = val;
21 }
22
23 Vector<float> getGirlsPrimaryColors() { // Property Generated Getter
24 return *reinterpret_cast<Vector<float>*>(reinterpret_cast<uintptr_t>(this) + 0x78);
25 }
26
27 void setGirlsPrimaryColors(Vector<float> val) { // Property Generated Setter
28 *reinterpret_cast<Vector<float>*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
29 }
30
31 Vector<float> getGirlsSecondaryColors() { // Property Generated Getter
32 return *reinterpret_cast<Vector<float>*>(reinterpret_cast<uintptr_t>(this) + 0x90);
33 }
34
35 void setGirlsSecondaryColors(Vector<float> val) { // Property Generated Setter
36 *reinterpret_cast<Vector<float>*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
37 }
38
39};
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition ShoppingColorModifiers.h:5
Vector< float > getBoysSecondaryColors()
Definition ShoppingColorModifiers.h:15
Vector< float > getGirlsSecondaryColors()
Definition ShoppingColorModifiers.h:31
void setGirlsPrimaryColors(Vector< float > val)
Definition ShoppingColorModifiers.h:27
void setGirlsSecondaryColors(Vector< float > val)
Definition ShoppingColorModifiers.h:35
void setBoysSecondaryColors(Vector< float > val)
Definition ShoppingColorModifiers.h:19
Vector< float > getGirlsPrimaryColors()
Definition ShoppingColorModifiers.h:23
Vector< float > getBoysPrimaryColors()
Definition ShoppingColorModifiers.h:7
void setBoysPrimaryColors(Vector< float > val)
Definition ShoppingColorModifiers.h:11