Cyrus Mod Loader
Loading...
Searching...
No Matches
ProvideSpellEffectInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GameEffectInfo.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 std::string getSpellName() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68);
10 }
11
12 void setSpellName(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
14 }
15
16 int getNumSpells() { // Property Generated Getter
17 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x88);
18 }
19
20 void setNumSpells(int val) { // Property Generated Setter
21 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
22 }
23
24 std::string getVFX() { // Property Generated Getter
25 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90);
26 }
27
28 void setVFX(std::string val) { // Property Generated Setter
29 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
30 }
31
32 bool getVFXOverride() { // Property Generated Getter
33 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xB0);
34 }
35
36 void setVFXOverride(bool val) { // Property Generated Setter
37 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xB0) = val;
38 }
39
40 std::string getSound() { // Property Generated Getter
41 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xB8);
42 }
43
44 void setSound(std::string val) { // Property Generated Setter
45 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xB8) = val;
46 }
47
48};
Definition GameEffectInfo.h:5
Definition ProvideSpellEffectInfo.h:6
void setVFX(std::string val)
Definition ProvideSpellEffectInfo.h:28
void setVFXOverride(bool val)
Definition ProvideSpellEffectInfo.h:36
void setSound(std::string val)
Definition ProvideSpellEffectInfo.h:44
std::string getVFX()
Definition ProvideSpellEffectInfo.h:24
int getNumSpells()
Definition ProvideSpellEffectInfo.h:16
bool getVFXOverride()
Definition ProvideSpellEffectInfo.h:32
std::string getSpellName()
Definition ProvideSpellEffectInfo.h:8
void setSpellName(std::string val)
Definition ProvideSpellEffectInfo.h:12
void setNumSpells(int val)
Definition ProvideSpellEffectInfo.h:20
std::string getSound()
Definition ProvideSpellEffectInfo.h:40