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