Cyrus Mod Loader
Loading...
Searching...
No Matches
PipConversionLevelData.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PipConversionValues.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<PipConversionValues>> * getLevelValues() { // Property Generated Getter
17 return reinterpret_cast<List<SharedPointer<PipConversionValues>> *>(reinterpret_cast<uintptr_t>(this) + 0x48);
18 }
19
20 void setLevelValues(List<SharedPointer<PipConversionValues>> * val) { // Property Generated Setter
21 *reinterpret_cast<List<SharedPointer<PipConversionValues>> **>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
22 }
23
24};
Definition PipConversionLevelData.h:6
void setMinLevel(int val)
Definition PipConversionLevelData.h:12
void setLevelValues(List< SharedPointer< PipConversionValues > > *val)
Definition PipConversionLevelData.h:20
int getMinLevel()
Definition PipConversionLevelData.h:8
List< SharedPointer< PipConversionValues > > * getLevelValues()
Definition PipConversionLevelData.h:16
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86