Cyrus Mod Loader
Loading...
Searching...
No Matches
CritAndBlockLevelData.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CritAndBlockValues.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 int getMinLevel() { // Property Generated Getter
9 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x58);
10 }
11
12 void setMinLevel(int val) { // Property Generated Setter
13 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
14 }
15
16 List<SharedPointer<CritAndBlockValues>> * getCritAndBlockValues() { // Property Generated Getter
17 return reinterpret_cast<List<SharedPointer<CritAndBlockValues>> *>(reinterpret_cast<uintptr_t>(this) + 0x48);
18 }
19
20 void setCritAndBlockValues(List<SharedPointer<CritAndBlockValues>> * val) { // Property Generated Setter
21 *reinterpret_cast<List<SharedPointer<CritAndBlockValues>> **>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
22 }
23
24};
Definition CritAndBlockLevelData.h:6
int getMinLevel()
Definition CritAndBlockLevelData.h:8
void setMinLevel(int val)
Definition CritAndBlockLevelData.h:12
void setCritAndBlockValues(List< SharedPointer< CritAndBlockValues > > *val)
Definition CritAndBlockLevelData.h:20
List< SharedPointer< CritAndBlockValues > > * getCritAndBlockValues()
Definition CritAndBlockLevelData.h:16
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86