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