Cyrus Mod Loader
Loading...
Searching...
No Matches
SkyboxInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
5class SkyboxInfo : public PropertyClass {
6public:
7 int getSkyLayerCount() { // Property Generated Getter
8 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setSkyLayerCount(int val) { // Property Generated Setter
12 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 Vector<std::string> getSkyLayerName() { // Property Generated Getter
16 return *reinterpret_cast<Vector<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x50);
17 }
18
19 void setSkyLayerName(Vector<std::string> val) { // Property Generated Setter
20 *reinterpret_cast<Vector<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
21 }
22
23 std::string getClientTag() { // Property Generated Getter
24 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68);
25 }
26
27 void setClientTag(std::string val) { // Property Generated Setter
28 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
29 }
30
31};
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition SkyboxInfo.h:5
std::string getClientTag()
Definition SkyboxInfo.h:23
void setSkyLayerCount(int val)
Definition SkyboxInfo.h:11
void setClientTag(std::string val)
Definition SkyboxInfo.h:27
Vector< std::string > getSkyLayerName()
Definition SkyboxInfo.h:15
void setSkyLayerName(Vector< std::string > val)
Definition SkyboxInfo.h:19
int getSkyLayerCount()
Definition SkyboxInfo.h:7