Cyrus Mod Loader
Loading...
Searching...
No Matches
PetMatchInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/ArenaMatchInfo.h>
4#include <Cyrus/Classes/PetDerbyTrackInfo.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
8public:
9 int getMinRank() { // Property Generated Getter
10 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x138);
11 }
12
13 void setMinRank(int val) { // Property Generated Setter
14 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x138) = val;
15 }
16
17 int getMaxRank() { // Property Generated Getter
18 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x13C);
19 }
20
21 void setMaxRank(int val) { // Property Generated Setter
22 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x13C) = val;
23 }
24
25 int getTrackRank() { // Property Generated Getter
26 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x140);
27 }
28
29 void setTrackRank(int val) { // Property Generated Setter
30 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x140) = val;
31 }
32
33 SharedPointer<PetDerbyTrackInfo> * getPTrackInfo() { // Property Generated Getter
34 return reinterpret_cast<SharedPointer<PetDerbyTrackInfo> *>(reinterpret_cast<uintptr_t>(this) + 0x150);
35 }
36
37 void setPTrackInfo(SharedPointer<PetDerbyTrackInfo> * val) { // Property Generated Setter
38 *reinterpret_cast<SharedPointer<PetDerbyTrackInfo> **>(reinterpret_cast<uintptr_t>(this) + 0x150) = val;
39 }
40
41 ResultList* * getRatingBrackets() { // Property Generated Getter
42 return reinterpret_cast<ResultList* *>(reinterpret_cast<uintptr_t>(this) + 0x148);
43 }
44
45 void setRatingBrackets(ResultList* * val) { // Property Generated Setter
46 *reinterpret_cast<ResultList* **>(reinterpret_cast<uintptr_t>(this) + 0x148) = val;
47 }
48
49};
Definition ArenaMatchInfo.h:7
Definition PetMatchInfo.h:7
SharedPointer< PetDerbyTrackInfo > * getPTrackInfo()
Definition PetMatchInfo.h:33
int getTrackRank()
Definition PetMatchInfo.h:25
int getMaxRank()
Definition PetMatchInfo.h:17
ResultList ** getRatingBrackets()
Definition PetMatchInfo.h:41
void setMinRank(int val)
Definition PetMatchInfo.h:13
void setRatingBrackets(ResultList **val)
Definition PetMatchInfo.h:45
int getMinRank()
Definition PetMatchInfo.h:9
void setMaxRank(int val)
Definition PetMatchInfo.h:21
void setTrackRank(int val)
Definition PetMatchInfo.h:29
void setPTrackInfo(SharedPointer< PetDerbyTrackInfo > *val)
Definition PetMatchInfo.h:37
Definition ResultList.h:6