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