Cyrus Mod Loader
Loading...
Searching...
No Matches
GuildMuseumGalleryInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GuildMuseumExhibitInfo.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 std::string getWorldName() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setWorldName(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 unsigned int getWorldDoorTemplateID() { // Property Generated Getter
17 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x68);
18 }
19
20 void setWorldDoorTemplateID(unsigned int val) { // Property Generated Setter
21 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
22 }
23
24 int getLevelScaleLevel() { // Property Generated Getter
25 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x84);
26 }
27
28 void setLevelScaleLevel(int val) { // Property Generated Setter
29 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x84) = val;
30 }
31
32 std::string getGalleryZone() { // Property Generated Getter
33 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88);
34 }
35
36 void setGalleryZone(std::string val) { // Property Generated Setter
37 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
38 }
39
40 List<SharedPointer<GuildMuseumExhibitInfo>> * getExhibitList() { // Property Generated Getter
41 return reinterpret_cast<List<SharedPointer<GuildMuseumExhibitInfo>> *>(reinterpret_cast<uintptr_t>(this) + 0x70);
42 }
43
44 void setExhibitList(List<SharedPointer<GuildMuseumExhibitInfo>> * val) { // Property Generated Setter
45 *reinterpret_cast<List<SharedPointer<GuildMuseumExhibitInfo>> **>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
46 }
47
48 std::string getDisplayName() { // Property Generated Getter
49 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xA8);
50 }
51
52 void setDisplayName(std::string val) { // Property Generated Setter
53 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xA8) = val;
54 }
55
56 std::string getDebugName() { // Property Generated Getter
57 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xC8);
58 }
59
60 void setDebugName(std::string val) { // Property Generated Setter
61 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xC8) = val;
62 }
63
64};
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86