Cyrus Mod Loader
Loading...
Searching...
No Matches
PetDerbyTrackInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 gid getTrackID() { // Property Generated Getter
8 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setTrackID(gid val) { // Property Generated Setter
12 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 std::string getZone() { // Property Generated Getter
16 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50);
17 }
18
19 void setZone(std::string val) { // Property Generated Setter
20 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
21 }
22
23 std::string getKey() { // Property Generated Getter
24 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70);
25 }
26
27 void setKey(std::string val) { // Property Generated Setter
28 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
29 }
30
31 unsigned char getRank() { // Property Generated Getter
32 return *reinterpret_cast<unsigned char*>(reinterpret_cast<uintptr_t>(this) + 0x90);
33 }
34
35 void setRank(unsigned char val) { // Property Generated Setter
36 *reinterpret_cast<unsigned char*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
37 }
38
39 unsigned char getLapCount() { // Property Generated Getter
40 return *reinterpret_cast<unsigned char*>(reinterpret_cast<uintptr_t>(this) + 0x91);
41 }
42
43 void setLapCount(unsigned char val) { // Property Generated Setter
44 *reinterpret_cast<unsigned char*>(reinterpret_cast<uintptr_t>(this) + 0x91) = val;
45 }
46
47};
Definition PetDerbyTrackInfo.h:5
void setZone(std::string val)
Definition PetDerbyTrackInfo.h:19
gid getTrackID()
Definition PetDerbyTrackInfo.h:7
std::string getZone()
Definition PetDerbyTrackInfo.h:15
void setKey(std::string val)
Definition PetDerbyTrackInfo.h:27
void setTrackID(gid val)
Definition PetDerbyTrackInfo.h:11
void setRank(unsigned char val)
Definition PetDerbyTrackInfo.h:35
unsigned char getRank()
Definition PetDerbyTrackInfo.h:31
unsigned char getLapCount()
Definition PetDerbyTrackInfo.h:39
void setLapCount(unsigned char val)
Definition PetDerbyTrackInfo.h:43
std::string getKey()
Definition PetDerbyTrackInfo.h:23
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86