Cyrus Mod Loader
Loading...
Searching...
No Matches
GuildMuseumArtifactInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 unsigned int getTemplateID() { // Property Generated Getter
8 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setTemplateID(unsigned int val) { // Property Generated Setter
12 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 unsigned int getTier1() { // Property Generated Getter
16 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x4C);
17 }
18
19 void setTier1(unsigned int val) { // Property Generated Setter
20 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x4C) = val;
21 }
22
23 unsigned int getTier2() { // Property Generated Getter
24 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x50);
25 }
26
27 void setTier2(unsigned int val) { // Property Generated Setter
28 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
29 }
30
31 unsigned int getTier3() { // Property Generated Getter
32 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x54);
33 }
34
35 void setTier3(unsigned int val) { // Property Generated Setter
36 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x54) = val;
37 }
38
39 unsigned int getTier4() { // Property Generated Getter
40 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x58);
41 }
42
43 void setTier4(unsigned int val) { // Property Generated Setter
44 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
45 }
46
47 std::string getOverrideDisplayName() { // Property Generated Getter
48 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x60);
49 }
50
51 void setOverrideDisplayName(std::string val) { // Property Generated Setter
52 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x60) = val;
53 }
54
55 std::string getDescription() { // Property Generated Getter
56 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x80);
57 }
58
59 void setDescription(std::string val) { // Property Generated Setter
60 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
61 }
62
63 bool getFoundInCantripChests() { // Property Generated Getter
64 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xA0);
65 }
66
67 void setFoundInCantripChests(bool val) { // Property Generated Setter
68 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xA0) = val;
69 }
70
71 List<unsigned int> getEquivalentTemplateIDList() { // Property Generated Getter
72 return *reinterpret_cast<List<unsigned int>*>(reinterpret_cast<uintptr_t>(this) + 0xA8);
73 }
74
75 void setEquivalentTemplateIDList(List<unsigned int> val) { // Property Generated Setter
76 *reinterpret_cast<List<unsigned int>*>(reinterpret_cast<uintptr_t>(this) + 0xA8) = val;
77 }
78
79 std::string getOverrideLocation() { // Property Generated Getter
80 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xC0);
81 }
82
83 void setOverrideLocation(std::string val) { // Property Generated Setter
84 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xC0) = val;
85 }
86
87};
Definition GuildMuseumArtifactInfo.h:5
unsigned int getTemplateID()
Definition GuildMuseumArtifactInfo.h:7
void setDescription(std::string val)
Definition GuildMuseumArtifactInfo.h:59
unsigned int getTier2()
Definition GuildMuseumArtifactInfo.h:23
void setOverrideDisplayName(std::string val)
Definition GuildMuseumArtifactInfo.h:51
void setOverrideLocation(std::string val)
Definition GuildMuseumArtifactInfo.h:83
void setTemplateID(unsigned int val)
Definition GuildMuseumArtifactInfo.h:11
unsigned int getTier3()
Definition GuildMuseumArtifactInfo.h:31
std::string getOverrideDisplayName()
Definition GuildMuseumArtifactInfo.h:47
void setTier4(unsigned int val)
Definition GuildMuseumArtifactInfo.h:43
unsigned int getTier4()
Definition GuildMuseumArtifactInfo.h:39
void setTier1(unsigned int val)
Definition GuildMuseumArtifactInfo.h:19
void setFoundInCantripChests(bool val)
Definition GuildMuseumArtifactInfo.h:67
std::string getOverrideLocation()
Definition GuildMuseumArtifactInfo.h:79
std::string getDescription()
Definition GuildMuseumArtifactInfo.h:55
void setEquivalentTemplateIDList(List< unsigned int > val)
Definition GuildMuseumArtifactInfo.h:75
unsigned int getTier1()
Definition GuildMuseumArtifactInfo.h:15
void setTier3(unsigned int val)
Definition GuildMuseumArtifactInfo.h:35
List< unsigned int > getEquivalentTemplateIDList()
Definition GuildMuseumArtifactInfo.h:71
bool getFoundInCantripChests()
Definition GuildMuseumArtifactInfo.h:63
void setTier2(unsigned int val)
Definition GuildMuseumArtifactInfo.h:27
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86