Cyrus Mod Loader
Loading...
Searching...
No Matches
TieredSpellTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CoreTemplate.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/SpellTemplate.h>
6
8public:
9 bool getRetired() { // Property Generated Getter
10 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x320);
11 }
12
13 void setRetired(bool val) { // Property Generated Setter
14 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x320) = val;
15 }
16
17 int getShardCost() { // Property Generated Getter
18 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x324);
19 }
20
21 void setShardCost(int val) { // Property Generated Setter
22 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x324) = val;
23 }
24
25 RequirementList* * getRequirements() { // Property Generated Getter
26 return reinterpret_cast<RequirementList* *>(reinterpret_cast<uintptr_t>(this) + 0x328);
27 }
28
29 void setRequirements(RequirementList* * val) { // Property Generated Setter
30 *reinterpret_cast<RequirementList* **>(reinterpret_cast<uintptr_t>(this) + 0x328) = val;
31 }
32
33 Vector<std::string> getNextTierSpells() { // Property Generated Getter
34 return *reinterpret_cast<Vector<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x330);
35 }
36
37 void setNextTierSpells(Vector<std::string> val) { // Property Generated Setter
38 *reinterpret_cast<Vector<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x330) = val;
39 }
40
41};
Definition RequirementList.h:6
Definition SpellTemplate.h:10
Definition TieredSpellTemplate.h:7
void setNextTierSpells(Vector< std::string > val)
Definition TieredSpellTemplate.h:37
void setRequirements(RequirementList **val)
Definition TieredSpellTemplate.h:29
RequirementList ** getRequirements()
Definition TieredSpellTemplate.h:25
Vector< std::string > getNextTierSpells()
Definition TieredSpellTemplate.h:33
int getShardCost()
Definition TieredSpellTemplate.h:17
void setShardCost(int val)
Definition TieredSpellTemplate.h:21
bool getRetired()
Definition TieredSpellTemplate.h:9
void setRetired(bool val)
Definition TieredSpellTemplate.h:13