Cyrus Mod Loader
Loading...
Searching...
No Matches
EloRank.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
5class EloRank : public PropertyClass {
6public:
7 int getEloRankUp() { // Property Generated Getter
8 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setEloRankUp(int val) { // Property Generated Setter
12 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 int getEloRankDown() { // Property Generated Getter
16 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x4C);
17 }
18
19 void setEloRankDown(int val) { // Property Generated Setter
20 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x4C) = val;
21 }
22
23 int getKFactor() { // Property Generated Getter
24 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x50);
25 }
26
27 void setKFactor(int val) { // Property Generated Setter
28 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
29 }
30
31 int getCarryoverElo() { // Property Generated Getter
32 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x54);
33 }
34
35 void setCarryoverElo(int val) { // Property Generated Setter
36 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x54) = val;
37 }
38
39 std::string getRankName() { // Property Generated Getter
40 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x58);
41 }
42
43 void setRankName(std::string val) { // Property Generated Setter
44 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
45 }
46
47 std::string getIcon() { // Property Generated Getter
48 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x78);
49 }
50
51 void setIcon(std::string val) { // Property Generated Setter
52 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
53 }
54
55 std::string getBadgeName() { // Property Generated Getter
56 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x98);
57 }
58
59 void setBadgeName(std::string val) { // Property Generated Setter
60 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x98) = val;
61 }
62
63};
Definition EloRank.h:5
int getEloRankUp()
Definition EloRank.h:7
std::string getBadgeName()
Definition EloRank.h:55
void setBadgeName(std::string val)
Definition EloRank.h:59
int getKFactor()
Definition EloRank.h:23
void setEloRankDown(int val)
Definition EloRank.h:19
void setKFactor(int val)
Definition EloRank.h:27
void setIcon(std::string val)
Definition EloRank.h:51
std::string getRankName()
Definition EloRank.h:39
void setRankName(std::string val)
Definition EloRank.h:43
int getCarryoverElo()
Definition EloRank.h:31
void setCarryoverElo(int val)
Definition EloRank.h:35
void setEloRankUp(int val)
Definition EloRank.h:11
int getEloRankDown()
Definition EloRank.h:15
std::string getIcon()
Definition EloRank.h:47
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86