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