Cyrus Mod Loader
Loading...
Searching...
No Matches
AvatarOption.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/AvatarOptionBase.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 std::string getMesh() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68);
10 }
11
12 void setMesh(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
14 }
15
16 bool getNoMesh() { // Property Generated Getter
17 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xA8);
18 }
19
20 void setNoMesh(bool val) { // Property Generated Setter
21 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xA8) = val;
22 }
23
24 std::string getGeometry() { // Property Generated Getter
25 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88);
26 }
27
28 void setGeometry(std::string val) { // Property Generated Setter
29 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
30 }
31
32};
Definition AvatarOptionBase.h:5
Definition AvatarOption.h:6
std::string getMesh()
Definition AvatarOption.h:8
void setNoMesh(bool val)
Definition AvatarOption.h:20
void setMesh(std::string val)
Definition AvatarOption.h:12
std::string getGeometry()
Definition AvatarOption.h:24
bool getNoMesh()
Definition AvatarOption.h:16
void setGeometry(std::string val)
Definition AvatarOption.h:28