Cyrus Mod Loader
Loading...
Searching...
No Matches
WizZoneData.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/MusicFileInfo.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/ZoneData.h>
6
7class WizZoneData : public ZoneData {
8public:
9 std::string getCombatMusic() { // Property Generated Getter
10 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x240);
11 }
12
13 void setCombatMusic(std::string val) { // Property Generated Setter
14 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x240) = val;
15 }
16
17 std::string getGuiFile() { // Property Generated Getter
18 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x260);
19 }
20
21 void setGuiFile(std::string val) { // Property Generated Setter
22 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x260) = val;
23 }
24
25 float getBloomBrightnessThreshold() { // Property Generated Getter
26 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x280);
27 }
28
29 void setBloomBrightnessThreshold(float val) { // Property Generated Setter
30 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x280) = val;
31 }
32
33 float getBloomScale() { // Property Generated Getter
34 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x284);
35 }
36
37 void setBloomScale(float val) { // Property Generated Setter
38 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x284) = val;
39 }
40
41 int getBloomCount() { // Property Generated Getter
42 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x288);
43 }
44
45 void setBloomCount(int val) { // Property Generated Setter
46 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x288) = val;
47 }
48
49 bool getNoMounts() { // Property Generated Getter
50 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x28C);
51 }
52
53 void setNoMounts(bool val) { // Property Generated Setter
54 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x28C) = val;
55 }
56
57 bool getA2wFog() { // Property Generated Getter
58 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x28D);
59 }
60
61 void setA2wFog(bool val) { // Property Generated Setter
62 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x28D) = val;
63 }
64
65 bool getSwimZone() { // Property Generated Getter
66 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x28E);
67 }
68
69 void setSwimZone(bool val) { // Property Generated Setter
70 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x28E) = val;
71 }
72
73 List<MusicFileInfo> getAltMusicFile() { // Property Generated Getter
74 return *reinterpret_cast<List<MusicFileInfo>*>(reinterpret_cast<uintptr_t>(this) + 0x290);
75 }
76
77 void setAltMusicFile(List<MusicFileInfo> val) { // Property Generated Setter
78 *reinterpret_cast<List<MusicFileInfo>*>(reinterpret_cast<uintptr_t>(this) + 0x290) = val;
79 }
80
81};
Definition WizZoneData.h:7
int getBloomCount()
Definition WizZoneData.h:41
void setBloomCount(int val)
Definition WizZoneData.h:45
std::string getCombatMusic()
Definition WizZoneData.h:9
bool getA2wFog()
Definition WizZoneData.h:57
bool getSwimZone()
Definition WizZoneData.h:65
void setCombatMusic(std::string val)
Definition WizZoneData.h:13
void setNoMounts(bool val)
Definition WizZoneData.h:53
List< MusicFileInfo > getAltMusicFile()
Definition WizZoneData.h:73
void setAltMusicFile(List< MusicFileInfo > val)
Definition WizZoneData.h:77
bool getNoMounts()
Definition WizZoneData.h:49
void setBloomScale(float val)
Definition WizZoneData.h:37
void setBloomBrightnessThreshold(float val)
Definition WizZoneData.h:29
void setSwimZone(bool val)
Definition WizZoneData.h:69
std::string getGuiFile()
Definition WizZoneData.h:17
void setGuiFile(std::string val)
Definition WizZoneData.h:21
void setA2wFog(bool val)
Definition WizZoneData.h:61
float getBloomBrightnessThreshold()
Definition WizZoneData.h:25
float getBloomScale()
Definition WizZoneData.h:33
Definition ZoneData.h:11