Cyrus Mod Loader
Loading...
Searching...
No Matches
EquipSlot.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
5class EquipSlot : public PropertyClass {
6public:
7 RequirementList* * getSlotRequirements() { // Property Generated Getter
8 return reinterpret_cast<RequirementList* *>(reinterpret_cast<uintptr_t>(this) + 0x98);
9 }
10
11 void setSlotRequirements(RequirementList* * val) { // Property Generated Setter
12 *reinterpret_cast<RequirementList* **>(reinterpret_cast<uintptr_t>(this) + 0x98) = val;
13 }
14
15 List<std::string> getAdjectivesAND() { // Property Generated Getter
16 return *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0xA0);
17 }
18
19 void setAdjectivesAND(List<std::string> val) { // Property Generated Setter
20 *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0xA0) = val;
21 }
22
23 List<std::string> getAdjectivesOR() { // Property Generated Getter
24 return *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0xB0);
25 }
26
27 void setAdjectivesOR(List<std::string> val) { // Property Generated Setter
28 *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0xB0) = val;
29 }
30
31 List<std::string> getAdjectivesNOT() { // Property Generated Getter
32 return *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0xC0);
33 }
34
35 void setAdjectivesNOT(List<std::string> val) { // Property Generated Setter
36 *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0xC0) = val;
37 }
38
39 std::string getSlotName() { // Property Generated Getter
40 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
41 }
42
43 void setSlotName(std::string val) { // Property Generated Setter
44 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
45 }
46
47 std::string getSlotCategory() { // Property Generated Getter
48 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68);
49 }
50
51 void setSlotCategory(std::string val) { // Property Generated Setter
52 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
53 }
54
55 unsigned int getMaxItemCount() { // Property Generated Getter
56 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x90);
57 }
58
59 void setMaxItemCount(unsigned int val) { // Property Generated Setter
60 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
61 }
62
63};
Definition EquipSlot.h:5
List< std::string > getAdjectivesAND()
Definition EquipSlot.h:15
void setAdjectivesAND(List< std::string > val)
Definition EquipSlot.h:19
List< std::string > getAdjectivesOR()
Definition EquipSlot.h:23
void setAdjectivesNOT(List< std::string > val)
Definition EquipSlot.h:35
RequirementList ** getSlotRequirements()
Definition EquipSlot.h:7
std::string getSlotCategory()
Definition EquipSlot.h:47
void setMaxItemCount(unsigned int val)
Definition EquipSlot.h:59
void setSlotCategory(std::string val)
Definition EquipSlot.h:51
std::string getSlotName()
Definition EquipSlot.h:39
void setAdjectivesOR(List< std::string > val)
Definition EquipSlot.h:27
List< std::string > getAdjectivesNOT()
Definition EquipSlot.h:31
unsigned int getMaxItemCount()
Definition EquipSlot.h:55
void setSlotRequirements(RequirementList **val)
Definition EquipSlot.h:11
void setSlotName(std::string val)
Definition EquipSlot.h:43
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition RequirementList.h:6