Cyrus Mod Loader
Loading...
Searching...
No Matches
GraphicalSpellWindow.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GraphicalSpell.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/Window.h>
6
8public:
9 SharedPointer<GraphicalSpell> * getSpell() { // Property Generated Getter
10 return reinterpret_cast<SharedPointer<GraphicalSpell> *>(reinterpret_cast<uintptr_t>(this) + 0x248);
11 }
12
13 void setSpell(SharedPointer<GraphicalSpell> * val) { // Property Generated Setter
14 *reinterpret_cast<SharedPointer<GraphicalSpell> **>(reinterpret_cast<uintptr_t>(this) + 0x248) = val;
15 }
16
17 std::string getSpellName() { // Property Generated Getter
18 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x258);
19 }
20
21 void setSpellName(std::string val) { // Property Generated Setter
22 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x258) = val;
23 }
24
25 bool getGrayscale() { // Property Generated Getter
26 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x27C);
27 }
28
29 void setGrayscale(bool val) { // Property Generated Setter
30 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x27C) = val;
31 }
32
33};
Definition GraphicalSpellWindow.h:7
void setGrayscale(bool val)
Definition GraphicalSpellWindow.h:29
SharedPointer< GraphicalSpell > * getSpell()
Definition GraphicalSpellWindow.h:9
void setSpellName(std::string val)
Definition GraphicalSpellWindow.h:21
bool getGrayscale()
Definition GraphicalSpellWindow.h:25
std::string getSpellName()
Definition GraphicalSpellWindow.h:17
void setSpell(SharedPointer< GraphicalSpell > *val)
Definition GraphicalSpellWindow.h:13
Represents a Wizard101 Window, think anything you see on screen that is not a 3D model.
Definition Window.h:45