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