Cyrus Mod Loader
Loading...
Searching...
No Matches
PetGameInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PetGameEnergyCost.h>
4#include <Cyrus/Classes/PetStatModificationSet.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
7class PetGameInfo : public PropertyClass {
8public:
9 bool getIsWebGame() { // Property Generated Getter
10 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x48);
11 }
12
13 void setIsWebGame(bool val) { // Property Generated Setter
14 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
15 }
16
17 std::string getName() { // Property Generated Getter
18 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xA0);
19 }
20
21 void setName(std::string val) { // Property Generated Setter
22 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xA0) = val;
23 }
24
25 List<SharedPointer<PetGameEnergyCost>> * getEnergyCosts() { // Property Generated Getter
26 return reinterpret_cast<List<SharedPointer<PetGameEnergyCost>> *>(reinterpret_cast<uintptr_t>(this) + 0xC0);
27 }
28
29 void setEnergyCosts(List<SharedPointer<PetGameEnergyCost>> * val) { // Property Generated Setter
30 *reinterpret_cast<List<SharedPointer<PetGameEnergyCost>> **>(reinterpret_cast<uintptr_t>(this) + 0xC0) = val;
31 }
32
33 Vector<SharedPointer<PetStatModificationSet>> * getTrackChoices() { // Property Generated Getter
34 return reinterpret_cast<Vector<SharedPointer<PetStatModificationSet>> *>(reinterpret_cast<uintptr_t>(this) + 0xD0);
35 }
36
37 void setTrackChoices(Vector<SharedPointer<PetStatModificationSet>> * val) { // Property Generated Setter
38 *reinterpret_cast<Vector<SharedPointer<PetStatModificationSet>> **>(reinterpret_cast<uintptr_t>(this) + 0xD0) = val;
39 }
40
41 std::string getGameIcon() { // Property Generated Getter
42 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50);
43 }
44
45 void setGameIcon(std::string val) { // Property Generated Setter
46 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
47 }
48
49 Vector<std::string> getTrackIcons() { // Property Generated Getter
50 return *reinterpret_cast<Vector<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x70);
51 }
52
53 void setTrackIcons(Vector<std::string> val) { // Property Generated Setter
54 *reinterpret_cast<Vector<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
55 }
56
57 Vector<std::string> getTrackToolTips() { // Property Generated Getter
58 return *reinterpret_cast<Vector<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x88);
59 }
60
61 void setTrackToolTips(Vector<std::string> val) { // Property Generated Setter
62 *reinterpret_cast<Vector<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
63 }
64
65};
Definition PetGameInfo.h:7
void setTrackChoices(Vector< SharedPointer< PetStatModificationSet > > *val)
Definition PetGameInfo.h:37
Vector< std::string > getTrackToolTips()
Definition PetGameInfo.h:57
void setEnergyCosts(List< SharedPointer< PetGameEnergyCost > > *val)
Definition PetGameInfo.h:29
Vector< std::string > getTrackIcons()
Definition PetGameInfo.h:49
void setGameIcon(std::string val)
Definition PetGameInfo.h:45
std::string getGameIcon()
Definition PetGameInfo.h:41
bool getIsWebGame()
Definition PetGameInfo.h:9
void setIsWebGame(bool val)
Definition PetGameInfo.h:13
void setTrackIcons(Vector< std::string > val)
Definition PetGameInfo.h:53
void setName(std::string val)
Definition PetGameInfo.h:21
std::string getName()
Definition PetGameInfo.h:17
List< SharedPointer< PetGameEnergyCost > > * getEnergyCosts()
Definition PetGameInfo.h:25
Vector< SharedPointer< PetStatModificationSet > > * getTrackChoices()
Definition PetGameInfo.h:33
void setTrackToolTips(Vector< std::string > val)
Definition PetGameInfo.h:61
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86