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