Cyrus Mod Loader
Loading...
Searching...
No Matches
FXBySlotEffectInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GameEffectInfo.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 bool getBIsOnPet() { // Property Generated Getter
9 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x68);
10 }
11
12 void setBIsOnPet(bool val) { // Property Generated Setter
13 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
14 }
15
16};
Definition FXBySlotEffectInfo.h:6
bool getBIsOnPet()
Definition FXBySlotEffectInfo.h:8
void setBIsOnPet(bool val)
Definition FXBySlotEffectInfo.h:12
Definition GameEffectInfo.h:5