Cyrus Mod Loader
Loading...
Searching...
No Matches
TutorialZoneMod.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 int getStageMin() { // Property Generated Getter
8 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setStageMin(int val) { // Property Generated Setter
12 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 int getStageMax() { // Property Generated Getter
16 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x4C);
17 }
18
19 void setStageMax(int val) { // Property Generated Setter
20 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x4C) = val;
21 }
22
23 List<std::string> getZoneEvents() { // Property Generated Getter
24 return *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x70);
25 }
26
27 void setZoneEvents(List<std::string> val) { // Property Generated Setter
28 *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
29 }
30
31 std::string getZone() { // Property Generated Getter
32 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50);
33 }
34
35 void setZone(std::string val) { // Property Generated Setter
36 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
37 }
38
39};
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition TutorialZoneMod.h:5
void setStageMax(int val)
Definition TutorialZoneMod.h:19
std::string getZone()
Definition TutorialZoneMod.h:31
List< std::string > getZoneEvents()
Definition TutorialZoneMod.h:23
void setStageMin(int val)
Definition TutorialZoneMod.h:11
int getStageMin()
Definition TutorialZoneMod.h:7
void setZoneEvents(List< std::string > val)
Definition TutorialZoneMod.h:27
int getStageMax()
Definition TutorialZoneMod.h:15
void setZone(std::string val)
Definition TutorialZoneMod.h:35