Cyrus Mod Loader
Loading...
Searching...
No Matches
AdvPvPEloBehavior.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/AdvPvPEloRecord.h>
4#include <Cyrus/Classes/BehaviorInstance.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
8public:
9 bool getLoaded() { // Property Generated Getter
10 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x70);
11 }
12
13 void setLoaded(bool val) { // Property Generated Setter
14 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
15 }
16
17 List<SharedPointer<AdvPvPEloRecord>> * getEntries() { // Property Generated Getter
18 return reinterpret_cast<List<SharedPointer<AdvPvPEloRecord>> *>(reinterpret_cast<uintptr_t>(this) + 0x78);
19 }
20
21 void setEntries(List<SharedPointer<AdvPvPEloRecord>> * val) { // Property Generated Setter
22 *reinterpret_cast<List<SharedPointer<AdvPvPEloRecord>> **>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
23 }
24
25 SharedPointer<AdvPvPEloRecord> * getRecordCache() { // Property Generated Getter
26 return reinterpret_cast<SharedPointer<AdvPvPEloRecord> *>(reinterpret_cast<uintptr_t>(this) + 0x88);
27 }
28
29 void setRecordCache(SharedPointer<AdvPvPEloRecord> * val) { // Property Generated Setter
30 *reinterpret_cast<SharedPointer<AdvPvPEloRecord> **>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
31 }
32
33};
Definition AdvPvPEloBehavior.h:7
void setRecordCache(SharedPointer< AdvPvPEloRecord > *val)
Definition AdvPvPEloBehavior.h:29
bool getLoaded()
Definition AdvPvPEloBehavior.h:9
SharedPointer< AdvPvPEloRecord > * getRecordCache()
Definition AdvPvPEloBehavior.h:25
void setLoaded(bool val)
Definition AdvPvPEloBehavior.h:13
List< SharedPointer< AdvPvPEloRecord > > * getEntries()
Definition AdvPvPEloBehavior.h:17
void setEntries(List< SharedPointer< AdvPvPEloRecord > > *val)
Definition AdvPvPEloBehavior.h:21
Definition BehaviorInstance.h:5