Cyrus Mod Loader
Loading...
Searching...
No Matches
PetXPLootInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/LootInfo.h>
4#include <Cyrus/Classes/LootInfoBase.h>
5#include <Cyrus/Classes/PetStatModificationSet.h>
6#include <Cyrus/Classes/PropertyClass.h>
7
8class PetXPLootInfo : public LootInfo {
9public:
10 PetStatModificationSet getStatModifierSet() { // Property Generated Getter
11 return *reinterpret_cast<PetStatModificationSet*>(reinterpret_cast<uintptr_t>(this) + 0x50);
12 }
13
14 void setStatModifierSet(PetStatModificationSet val) { // Property Generated Setter
15 *reinterpret_cast<PetStatModificationSet*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
16 }
17
18 bool getLeveledUp() { // Property Generated Getter
19 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x108);
20 }
21
22 void setLeveledUp(bool val) { // Property Generated Setter
23 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x108) = val;
24 }
25
26 unsigned int getLastTalentGiven() { // Property Generated Getter
27 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x10C);
28 }
29
30 void setLastTalentGiven(unsigned int val) { // Property Generated Setter
31 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x10C) = val;
32 }
33
34 unsigned int getLastPowerGiven() { // Property Generated Getter
35 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x110);
36 }
37
38 void setLastPowerGiven(unsigned int val) { // Property Generated Setter
39 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x110) = val;
40 }
41
42 unsigned int getLastJewelGiven() { // Property Generated Getter
43 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x114);
44 }
45
46 void setLastJewelGiven(unsigned int val) { // Property Generated Setter
47 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x114) = val;
48 }
49
50};
Definition LootInfo.h:7
Definition PetStatModificationSet.h:6
Definition PetXPLootInfo.h:8
void setStatModifierSet(PetStatModificationSet val)
Definition PetXPLootInfo.h:14
void setLastPowerGiven(unsigned int val)
Definition PetXPLootInfo.h:38
void setLeveledUp(bool val)
Definition PetXPLootInfo.h:22
unsigned int getLastTalentGiven()
Definition PetXPLootInfo.h:26
void setLastJewelGiven(unsigned int val)
Definition PetXPLootInfo.h:46
unsigned int getLastPowerGiven()
Definition PetXPLootInfo.h:34
bool getLeveledUp()
Definition PetXPLootInfo.h:18
unsigned int getLastJewelGiven()
Definition PetXPLootInfo.h:42
PetStatModificationSet getStatModifierSet()
Definition PetXPLootInfo.h:10
void setLastTalentGiven(unsigned int val)
Definition PetXPLootInfo.h:30