Cyrus Mod Loader
Loading...
Searching...
No Matches
PetBoostPlayerStatEffectTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GameEffectTemplate.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/StatisticEffectTemplate.h>
6#include <Cyrus/Classes/WizStatisticEffectTemplate.h>
7
9public:
10 std::string getPrimaryStat1() { // Property Generated Getter
11 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x258);
12 }
13
14 void setPrimaryStat1(std::string val) { // Property Generated Setter
15 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x258) = val;
16 }
17
18 std::string getPrimaryStat2() { // Property Generated Getter
19 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x278);
20 }
21
22 void setPrimaryStat2(std::string val) { // Property Generated Setter
23 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x278) = val;
24 }
25
26 std::string getSecondaryStat() { // Property Generated Getter
27 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x298);
28 }
29
30 void setSecondaryStat(std::string val) { // Property Generated Setter
31 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x298) = val;
32 }
33
34 float getSecondaryModifier() { // Property Generated Getter
35 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x2B8);
36 }
37
38 void setSecondaryModifier(float val) { // Property Generated Setter
39 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x2B8) = val;
40 }
41
42};
Definition PetBoostPlayerStatEffectTemplate.h:8
std::string getPrimaryStat1()
Definition PetBoostPlayerStatEffectTemplate.h:10
void setPrimaryStat2(std::string val)
Definition PetBoostPlayerStatEffectTemplate.h:22
std::string getPrimaryStat2()
Definition PetBoostPlayerStatEffectTemplate.h:18
std::string getSecondaryStat()
Definition PetBoostPlayerStatEffectTemplate.h:26
void setSecondaryModifier(float val)
Definition PetBoostPlayerStatEffectTemplate.h:38
void setSecondaryStat(std::string val)
Definition PetBoostPlayerStatEffectTemplate.h:30
float getSecondaryModifier()
Definition PetBoostPlayerStatEffectTemplate.h:34
void setPrimaryStat1(std::string val)
Definition PetBoostPlayerStatEffectTemplate.h:14
Definition WizStatisticEffectTemplate.h:7