Cyrus Mod Loader
Loading...
Searching...
No Matches
ForcedStateInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 std::string getForcedState() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setForcedState(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 std::string getCategory() { // Property Generated Getter
16 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x98);
17 }
18
19 void setCategory(std::string val) { // Property Generated Setter
20 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x98) = val;
21 }
22
23 std::string getFromState() { // Property Generated Getter
24 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70);
25 }
26
27 void setFromState(std::string val) { // Property Generated Setter
28 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
29 }
30
31};
Definition ForcedStateInfo.h:5
std::string getFromState()
Definition ForcedStateInfo.h:23
std::string getCategory()
Definition ForcedStateInfo.h:15
std::string getForcedState()
Definition ForcedStateInfo.h:7
void setCategory(std::string val)
Definition ForcedStateInfo.h:19
void setForcedState(std::string val)
Definition ForcedStateInfo.h:11
void setFromState(std::string val)
Definition ForcedStateInfo.h:27
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86