Cyrus Mod Loader
Loading...
Searching...
No Matches
WizClientObject.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/ClientObject.h>
4#include <Cyrus/Classes/CoreObject.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
8public:
9 WizGameStats* * getGameStats() { // Property Generated Getter
10 return reinterpret_cast<WizGameStats* *>(reinterpret_cast<uintptr_t>(this) + 0x220);
11 }
12
13 void setGameStats(WizGameStats* * val) { // Property Generated Setter
14 *reinterpret_cast<WizGameStats* **>(reinterpret_cast<uintptr_t>(this) + 0x220) = val;
15 }
16
17 WizGameStats* GetGameStats() { // Function Generated
18 using FunctionPointerType = WizGameStats* (*)(WizClientObject *self);
19 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1E69EC0);
20 return inner(this);
21 }
22
23};
Definition ClientObject.h:6
Definition WizClientObject.h:7
WizGameStats ** getGameStats()
Definition WizClientObject.h:9
WizGameStats * GetGameStats()
Definition WizClientObject.h:17
void setGameStats(WizGameStats **val)
Definition WizClientObject.h:13
Definition WizGameStats.h:6