Cyrus Mod Loader
Loading...
Searching...
No Matches
RatingInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
5class RatingInfo : public PropertyClass {
6public:
7 std::string getName() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setName(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 int getMinScore() { // Property Generated Getter
16 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x68);
17 }
18
19 void setMinScore(int val) { // Property Generated Setter
20 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
21 }
22
23 int getMaxScore() { // Property Generated Getter
24 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x6C);
25 }
26
27 void setMaxScore(int val) { // Property Generated Setter
28 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x6C) = val;
29 }
30
31 std::string getPvpIcon() { // Property Generated Getter
32 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70);
33 }
34
35 void setPvpIcon(std::string val) { // Property Generated Setter
36 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
37 }
38
39 std::string getPetIcon() { // Property Generated Getter
40 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90);
41 }
42
43 void setPetIcon(std::string val) { // Property Generated Setter
44 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
45 }
46
47};
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition RatingInfo.h:5
int getMaxScore()
Definition RatingInfo.h:23
void setPetIcon(std::string val)
Definition RatingInfo.h:43
void setName(std::string val)
Definition RatingInfo.h:11
int getMinScore()
Definition RatingInfo.h:15
std::string getPvpIcon()
Definition RatingInfo.h:31
void setMaxScore(int val)
Definition RatingInfo.h:27
void setPvpIcon(std::string val)
Definition RatingInfo.h:35
void setMinScore(int val)
Definition RatingInfo.h:19
std::string getPetIcon()
Definition RatingInfo.h:39
std::string getName()
Definition RatingInfo.h:7