Cyrus Mod Loader
Loading...
Searching...
No Matches
DeckBehavior.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorInstance.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/SpellData.h>
6
8public:
9 List<SharedPointer<SpellData>> * getSpellList() { // Property Generated Getter
10 return reinterpret_cast<List<SharedPointer<SpellData>> *>(reinterpret_cast<uintptr_t>(this) + 0x78);
11 }
12
13 void setSpellList(List<SharedPointer<SpellData>> * val) { // Property Generated Setter
14 *reinterpret_cast<List<SharedPointer<SpellData>> **>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
15 }
16
17 std::string getSerializedExclusionList() { // Property Generated Getter
18 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x98);
19 }
20
21 void setSerializedExclusionList(std::string val) { // Property Generated Setter
22 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x98) = val;
23 }
24
25 unsigned int getArchmasterySchool() { // Property Generated Getter
26 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0xB8);
27 }
28
29 void setArchmasterySchool(unsigned int val) { // Property Generated Setter
30 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0xB8) = val;
31 }
32
33};
Definition BehaviorInstance.h:5
Definition DeckBehavior.h:7
void setSerializedExclusionList(std::string val)
Definition DeckBehavior.h:21
std::string getSerializedExclusionList()
Definition DeckBehavior.h:17
unsigned int getArchmasterySchool()
Definition DeckBehavior.h:25
void setSpellList(List< SharedPointer< SpellData > > *val)
Definition DeckBehavior.h:13
void setArchmasterySchool(unsigned int val)
Definition DeckBehavior.h:29
List< SharedPointer< SpellData > > * getSpellList()
Definition DeckBehavior.h:9