Cyrus Mod Loader
Loading...
Searching...
No Matches
MountTable.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/MountRecord.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
6class MountTable : public PropertyClass {
7public:
8 Vector<SharedPointer<MountRecord>> * getMounts() { // Property Generated Getter
9 return reinterpret_cast<Vector<SharedPointer<MountRecord>> *>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setMounts(Vector<SharedPointer<MountRecord>> * val) { // Property Generated Setter
13 *reinterpret_cast<Vector<SharedPointer<MountRecord>> **>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16};
Definition MountTable.h:6
void setMounts(Vector< SharedPointer< MountRecord > > *val)
Definition MountTable.h:12
Vector< SharedPointer< MountRecord > > * getMounts()
Definition MountTable.h:8
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86