Cyrus Mod Loader
Loading...
Searching...
No Matches
PetMatchRequest.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/MatchRequest.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) + 0x70);
11 }
12
13 void setMinRank(int val) { // Property Generated Setter
14 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
15 }
16
17 int getMaxRank() { // Property Generated Getter
18 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x74);
19 }
20
21 void setMaxRank(int val) { // Property Generated Setter
22 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x74) = val;
23 }
24
25 SharedPointer<PetDerbyTrackInfo> * getPTrackInfo() { // Property Generated Getter
26 return reinterpret_cast<SharedPointer<PetDerbyTrackInfo> *>(reinterpret_cast<uintptr_t>(this) + 0x78);
27 }
28
29 void setPTrackInfo(SharedPointer<PetDerbyTrackInfo> * val) { // Property Generated Setter
30 *reinterpret_cast<SharedPointer<PetDerbyTrackInfo> **>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
31 }
32
33};
Definition MatchRequest.h:6
Definition PetMatchRequest.h:7
int getMinRank()
Definition PetMatchRequest.h:9
void setMaxRank(int val)
Definition PetMatchRequest.h:21
void setMinRank(int val)
Definition PetMatchRequest.h:13
int getMaxRank()
Definition PetMatchRequest.h:17
void setPTrackInfo(SharedPointer< PetDerbyTrackInfo > *val)
Definition PetMatchRequest.h:29
SharedPointer< PetDerbyTrackInfo > * getPTrackInfo()
Definition PetMatchRequest.h:25