Cyrus Mod Loader
Loading...
Searching...
No Matches
BattleBookBehavior.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorInstance.h>
4#include <Cyrus/Classes/PolymorphRatingInfo.h>
5#include <Cyrus/Classes/PropertyClass.h>
6#include <Cyrus/Classes/SpellData.h>
7
9public:
10 List<SharedPointer<SpellData>> * getSpellList() { // Property Generated Getter
11 return reinterpret_cast<List<SharedPointer<SpellData>> *>(reinterpret_cast<uintptr_t>(this) + 0x78);
12 }
13
14 void setSpellList(List<SharedPointer<SpellData>> * val) { // Property Generated Setter
15 *reinterpret_cast<List<SharedPointer<SpellData>> **>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
16 }
17
18 SharedPointer<PolymorphRatingInfo> * getRating() { // Property Generated Getter
19 return reinterpret_cast<SharedPointer<PolymorphRatingInfo> *>(reinterpret_cast<uintptr_t>(this) + 0x88);
20 }
21
22 void setRating(SharedPointer<PolymorphRatingInfo> * val) { // Property Generated Setter
23 *reinterpret_cast<SharedPointer<PolymorphRatingInfo> **>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
24 }
25
26};
Definition BattleBookBehavior.h:8
SharedPointer< PolymorphRatingInfo > * getRating()
Definition BattleBookBehavior.h:18
List< SharedPointer< SpellData > > * getSpellList()
Definition BattleBookBehavior.h:10
void setRating(SharedPointer< PolymorphRatingInfo > *val)
Definition BattleBookBehavior.h:22
void setSpellList(List< SharedPointer< SpellData > > *val)
Definition BattleBookBehavior.h:14
Definition BehaviorInstance.h:5