Cyrus Mod Loader
Loading...
Searching...
No Matches
HatchmakingPetsList.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/HatchmakingPet.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 List<SharedPointer<HatchmakingPet>> * getHatchmakingPetsList() { // Property Generated Getter
9 return reinterpret_cast<List<SharedPointer<HatchmakingPet>> *>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setHatchmakingPetsList(List<SharedPointer<HatchmakingPet>> * val) { // Property Generated Setter
13 *reinterpret_cast<List<SharedPointer<HatchmakingPet>> **>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 bool getDisableKiosk() { // Property Generated Getter
17 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x58);
18 }
19
20 void setDisableKiosk(bool val) { // Property Generated Setter
21 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
22 }
23
24 bool getDisableOffer() { // Property Generated Getter
25 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x59);
26 }
27
28 void setDisableOffer(bool val) { // Property Generated Setter
29 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x59) = val;
30 }
31
32 unsigned int getPremiumPetExceptionCode() { // Property Generated Getter
33 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x5C);
34 }
35
36 void setPremiumPetExceptionCode(unsigned int val) { // Property Generated Setter
37 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x5C) = val;
38 }
39
40};
Definition HatchmakingPetsList.h:6
List< SharedPointer< HatchmakingPet > > * getHatchmakingPetsList()
Definition HatchmakingPetsList.h:8
bool getDisableKiosk()
Definition HatchmakingPetsList.h:16
void setDisableKiosk(bool val)
Definition HatchmakingPetsList.h:20
void setPremiumPetExceptionCode(unsigned int val)
Definition HatchmakingPetsList.h:36
void setDisableOffer(bool val)
Definition HatchmakingPetsList.h:28
bool getDisableOffer()
Definition HatchmakingPetsList.h:24
void setHatchmakingPetsList(List< SharedPointer< HatchmakingPet > > *val)
Definition HatchmakingPetsList.h:12
unsigned int getPremiumPetExceptionCode()
Definition HatchmakingPetsList.h:32
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86