Cyrus Mod Loader
Loading...
Searching...
No Matches
EquipmentSet.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
5class EquipmentSet : public PropertyClass {
6public:
7 std::string getSerializedItems() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x60);
9 }
10
11 void setSerializedItems(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x60) = val;
13 }
14
15 unsigned int getEquipmentSetName() { // Property Generated Getter
16 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x58);
17 }
18
19 void setEquipmentSetName(unsigned int val) { // Property Generated Setter
20 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
21 }
22
23 bool getIsEquipped() { // Property Generated Getter
24 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x80);
25 }
26
27 void setIsEquipped(bool val) { // Property Generated Setter
28 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
29 }
30
31};
Definition EquipmentSet.h:5
unsigned int getEquipmentSetName()
Definition EquipmentSet.h:15
void setSerializedItems(std::string val)
Definition EquipmentSet.h:11
void setIsEquipped(bool val)
Definition EquipmentSet.h:27
std::string getSerializedItems()
Definition EquipmentSet.h:7
bool getIsEquipped()
Definition EquipmentSet.h:23
void setEquipmentSetName(unsigned int val)
Definition EquipmentSet.h:19
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86