Cyrus Mod Loader
Loading...
Searching...
No Matches
PublicEquippedJewelInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Classes/PublicSocketJewelPair.h>
5
7public:
8 List<SharedPointer<PublicSocketJewelPair>> * getInfoPairs() { // Property Generated Getter
9 return reinterpret_cast<List<SharedPointer<PublicSocketJewelPair>> *>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setInfoPairs(List<SharedPointer<PublicSocketJewelPair>> * val) { // Property Generated Setter
13 *reinterpret_cast<List<SharedPointer<PublicSocketJewelPair>> **>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 bool getBSocketsLocked() { // Property Generated Getter
17 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x58);
18 }
19
20 void setBSocketsLocked(bool val) { // Property Generated Setter
21 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
22 }
23
24};
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition PublicEquippedJewelInfo.h:6
void setBSocketsLocked(bool val)
Definition PublicEquippedJewelInfo.h:20
bool getBSocketsLocked()
Definition PublicEquippedJewelInfo.h:16
void setInfoPairs(List< SharedPointer< PublicSocketJewelPair > > *val)
Definition PublicEquippedJewelInfo.h:12
List< SharedPointer< PublicSocketJewelPair > > * getInfoPairs()
Definition PublicEquippedJewelInfo.h:8