Cyrus Mod Loader
Loading...
Searching...
No Matches
ClientCSRRegistryList.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CSRPropertyEntry.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 List<SharedPointer<CSRPropertyEntry>> * getPropertyList() { // Property Generated Getter
9 return reinterpret_cast<List<SharedPointer<CSRPropertyEntry>> *>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setPropertyList(List<SharedPointer<CSRPropertyEntry>> * val) { // Property Generated Setter
13 *reinterpret_cast<List<SharedPointer<CSRPropertyEntry>> **>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16};
Definition ClientCSRRegistryList.h:6
List< SharedPointer< CSRPropertyEntry > > * getPropertyList()
Constructs and caches the PropertyList for the derived class, adding all reflected members and member...
Definition ClientCSRRegistryList.h:8
void setPropertyList(List< SharedPointer< CSRPropertyEntry > > *val)
Definition ClientCSRRegistryList.h:12
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86