Cyrus Mod Loader
Loading...
Searching...
No Matches
JewelSocketBehaviorTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorTemplate.h>
4#include <Cyrus/Classes/JewelSocket.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
8public:
9 List<JewelSocket> getJewelSockets() { // Property Generated Getter
10 return *reinterpret_cast<List<JewelSocket>*>(reinterpret_cast<uintptr_t>(this) + 0x78);
11 }
12
13 void setJewelSockets(List<JewelSocket> val) { // Property Generated Setter
14 *reinterpret_cast<List<JewelSocket>*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
15 }
16
17 bool getSocketDeleted() { // Property Generated Getter
18 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x88);
19 }
20
21 void setSocketDeleted(bool val) { // Property Generated Setter
22 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
23 }
24
25};
Definition BehaviorTemplate.h:13
Definition JewelSocketBehaviorTemplate.h:7
List< JewelSocket > getJewelSockets()
Definition JewelSocketBehaviorTemplate.h:9
void setJewelSockets(List< JewelSocket > val)
Definition JewelSocketBehaviorTemplate.h:13
bool getSocketDeleted()
Definition JewelSocketBehaviorTemplate.h:17
void setSocketDeleted(bool val)
Definition JewelSocketBehaviorTemplate.h:21