Cyrus Mod Loader
Loading...
Searching...
No Matches
LikesDislikesEntry.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 std::string getAdjective() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setAdjective(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 std::string getStringTableKey() { // Property Generated Getter
16 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68);
17 }
18
19 void setStringTableKey(std::string val) { // Property Generated Setter
20 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
21 }
22
23 float getModifier() { // Property Generated Getter
24 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x88);
25 }
26
27 void setModifier(float val) { // Property Generated Setter
28 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
29 }
30
31 bool getHidden() { // Property Generated Getter
32 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x8C);
33 }
34
35 void setHidden(bool val) { // Property Generated Setter
36 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x8C) = val;
37 }
38
39};
Definition LikesDislikesEntry.h:5
std::string getAdjective()
Definition LikesDislikesEntry.h:7
void setModifier(float val)
Definition LikesDislikesEntry.h:27
bool getHidden()
Definition LikesDislikesEntry.h:31
std::string getStringTableKey()
Definition LikesDislikesEntry.h:15
void setStringTableKey(std::string val)
Definition LikesDislikesEntry.h:19
void setHidden(bool val)
Definition LikesDislikesEntry.h:35
void setAdjective(std::string val)
Definition LikesDislikesEntry.h:11
float getModifier()
Definition LikesDislikesEntry.h:23
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86