Cyrus Mod Loader
Loading...
Searching...
No Matches
ShadowSpellTrackingData.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Classes/ShadowSpellEffect.h>
5
7public:
8 SharedPointer<ShadowSpellEffect> * getPSpellEffect() { // Property Generated Getter
9 return reinterpret_cast<SharedPointer<ShadowSpellEffect> *>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setPSpellEffect(SharedPointer<ShadowSpellEffect> * val) { // Property Generated Setter
13 *reinterpret_cast<SharedPointer<ShadowSpellEffect> **>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 int getRemainingTurns() { // Property Generated Getter
17 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x58);
18 }
19
20 void setRemainingTurns(int val) { // Property Generated Setter
21 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
22 }
23
24};
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition ShadowSpellTrackingData.h:6
int getRemainingTurns()
Definition ShadowSpellTrackingData.h:16
void setPSpellEffect(SharedPointer< ShadowSpellEffect > *val)
Definition ShadowSpellTrackingData.h:12
void setRemainingTurns(int val)
Definition ShadowSpellTrackingData.h:20
SharedPointer< ShadowSpellEffect > * getPSpellEffect()
Definition ShadowSpellTrackingData.h:8