Cyrus Mod Loader
Loading...
Searching...
No Matches
HubZoneMapping.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 std::string getWorld() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setWorld(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 std::string getHubZone() { // Property Generated Getter
16 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68);
17 }
18
19 void setHubZone(std::string val) { // Property Generated Setter
20 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
21 }
22
23 std::string getLocation() { // Property Generated Getter
24 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88);
25 }
26
27 void setLocation(std::string val) { // Property Generated Setter
28 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
29 }
30
31 std::string getUniverseTPZone() { // Property Generated Getter
32 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xA8);
33 }
34
35 void setUniverseTPZone(std::string val) { // Property Generated Setter
36 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xA8) = val;
37 }
38
39 std::string getUniverseTPLocation() { // Property Generated Getter
40 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xC8);
41 }
42
43 void setUniverseTPLocation(std::string val) { // Property Generated Setter
44 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xC8) = val;
45 }
46
47 std::string getHubZoneDisplayName() { // Property Generated Getter
48 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xE8);
49 }
50
51 void setHubZoneDisplayName(std::string val) { // Property Generated Setter
52 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xE8) = val;
53 }
54
55 List<std::string> getSpecialZones() { // Property Generated Getter
56 return *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x108);
57 }
58
59 void setSpecialZones(List<std::string> val) { // Property Generated Setter
60 *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x108) = val;
61 }
62
63};
Definition HubZoneMapping.h:5
std::string getUniverseTPZone()
Definition HubZoneMapping.h:31
void setLocation(std::string val)
Definition HubZoneMapping.h:27
void setUniverseTPLocation(std::string val)
Definition HubZoneMapping.h:43
std::string getUniverseTPLocation()
Definition HubZoneMapping.h:39
std::string getWorld()
Definition HubZoneMapping.h:7
void setHubZoneDisplayName(std::string val)
Definition HubZoneMapping.h:51
std::string getHubZone()
Definition HubZoneMapping.h:15
void setWorld(std::string val)
Definition HubZoneMapping.h:11
void setSpecialZones(List< std::string > val)
Definition HubZoneMapping.h:59
List< std::string > getSpecialZones()
Definition HubZoneMapping.h:55
void setUniverseTPZone(std::string val)
Definition HubZoneMapping.h:35
std::string getHubZoneDisplayName()
Definition HubZoneMapping.h:47
void setHubZone(std::string val)
Definition HubZoneMapping.h:19
std::string getLocation()
Definition HubZoneMapping.h:23
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86