Cyrus Mod Loader
Loading...
Searching...
No Matches
WizAvatarTextureOption.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/AvatarOptionBase.h>
4#include <Cyrus/Classes/AvatarTextureOption.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
8public:
9 std::string getTexture() { // Property Generated Getter
10 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x108);
11 }
12
13 void setTexture(std::string val) { // Property Generated Setter
14 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x108) = val;
15 }
16
17 std::string getDecal() { // Property Generated Getter
18 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x128);
19 }
20
21 void setDecal(std::string val) { // Property Generated Setter
22 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x128) = val;
23 }
24
25 std::string getDecal2() { // Property Generated Getter
26 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x148);
27 }
28
29 void setDecal2(std::string val) { // Property Generated Setter
30 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x148) = val;
31 }
32
33 Vector3D getTintColor() { // Property Generated Getter
34 return *reinterpret_cast<Vector3D*>(reinterpret_cast<uintptr_t>(this) + 0x168);
35 }
36
37 void setTintColor(Vector3D val) { // Property Generated Setter
38 *reinterpret_cast<Vector3D*>(reinterpret_cast<uintptr_t>(this) + 0x168) = val;
39 }
40
41};
Definition AvatarTextureOption.h:6
Definition WizAvatarTextureOption.h:7
void setDecal2(std::string val)
Definition WizAvatarTextureOption.h:29
Vector3D getTintColor()
Definition WizAvatarTextureOption.h:33
void setTintColor(Vector3D val)
Definition WizAvatarTextureOption.h:37
void setTexture(std::string val)
Definition WizAvatarTextureOption.h:13
void setDecal(std::string val)
Definition WizAvatarTextureOption.h:21
std::string getTexture()
Definition WizAvatarTextureOption.h:9
std::string getDecal2()
Definition WizAvatarTextureOption.h:25
std::string getDecal()
Definition WizAvatarTextureOption.h:17
Definition shared.h:12