Cyrus Mod Loader
Loading...
Searching...
No Matches
EloRatingsTable.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/EloRank.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 std::string getLeagueType() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setLeagueType(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 int getStartingElo() { // Property Generated Getter
17 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x68);
18 }
19
20 void setStartingElo(int val) { // Property Generated Setter
21 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
22 }
23
24 int getMinElo() { // Property Generated Getter
25 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x6C);
26 }
27
28 void setMinElo(int val) { // Property Generated Setter
29 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x6C) = val;
30 }
31
32 Vector<SharedPointer<EloRank>> * getRanks() { // Property Generated Getter
33 return reinterpret_cast<Vector<SharedPointer<EloRank>> *>(reinterpret_cast<uintptr_t>(this) + 0x70);
34 }
35
36 void setRanks(Vector<SharedPointer<EloRank>> * val) { // Property Generated Setter
37 *reinterpret_cast<Vector<SharedPointer<EloRank>> **>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
38 }
39
40};
Definition EloRatingsTable.h:6
void setRanks(Vector< SharedPointer< EloRank > > *val)
Definition EloRatingsTable.h:36
int getMinElo()
Definition EloRatingsTable.h:24
int getStartingElo()
Definition EloRatingsTable.h:16
void setStartingElo(int val)
Definition EloRatingsTable.h:20
std::string getLeagueType()
Definition EloRatingsTable.h:8
void setMinElo(int val)
Definition EloRatingsTable.h:28
void setLeagueType(std::string val)
Definition EloRatingsTable.h:12
Vector< SharedPointer< EloRank > > * getRanks()
Definition EloRatingsTable.h:32
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86