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