Cyrus Mod Loader
Loading...
Searching...
No Matches
PVP5thAgeLeagueTotals.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 unsigned int getLeagueID() { // Property Generated Getter
8 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setLeagueID(unsigned int val) { // Property Generated Setter
12 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 int getElo() { // Property Generated Getter
16 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x4C);
17 }
18
19 void setElo(int val) { // Property Generated Setter
20 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x4C) = val;
21 }
22
23 int getRank() { // Property Generated Getter
24 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x50);
25 }
26
27 void setRank(int val) { // Property Generated Setter
28 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
29 }
30
31 int getWins() { // Property Generated Getter
32 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x54);
33 }
34
35 void setWins(int val) { // Property Generated Setter
36 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x54) = val;
37 }
38
39 int getLosses() { // Property Generated Getter
40 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x58);
41 }
42
43 void setLosses(int val) { // Property Generated Setter
44 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
45 }
46
47};
Definition PVP5thAgeLeagueTotals.h:5
unsigned int getLeagueID()
Definition PVP5thAgeLeagueTotals.h:7
void setWins(int val)
Definition PVP5thAgeLeagueTotals.h:35
int getElo()
Definition PVP5thAgeLeagueTotals.h:15
int getWins()
Definition PVP5thAgeLeagueTotals.h:31
int getLosses()
Definition PVP5thAgeLeagueTotals.h:39
void setRank(int val)
Definition PVP5thAgeLeagueTotals.h:27
void setLeagueID(unsigned int val)
Definition PVP5thAgeLeagueTotals.h:11
int getRank()
Definition PVP5thAgeLeagueTotals.h:23
void setLosses(int val)
Definition PVP5thAgeLeagueTotals.h:43
void setElo(int val)
Definition PVP5thAgeLeagueTotals.h:19
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86