Cyrus Mod Loader
Loading...
Searching...
No Matches
GoalEntry.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Classes/ServiceOptionBase.h>
5
7public:
8 gid getQuestID() { // Property Generated Getter
9 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0xD8);
10 }
11
12 void setQuestID(gid val) { // Property Generated Setter
13 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0xD8) = val;
14 }
15
16 gid getGoalID() { // Property Generated Getter
17 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0xE0);
18 }
19
20 void setGoalID(gid val) { // Property Generated Setter
21 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0xE0) = val;
22 }
23
24 std::string getGoalTitle() { // Property Generated Getter
25 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x110);
26 }
27
28 void setGoalTitle(std::string val) { // Property Generated Setter
29 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x110) = val;
30 }
31
32 std::string getQuestTitle() { // Property Generated Getter
33 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xF0);
34 }
35
36 void setQuestTitle(std::string val) { // Property Generated Setter
37 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xF0) = val;
38 }
39
40 unsigned int getGoalNameID() { // Property Generated Getter
41 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0xE8);
42 }
43
44 void setGoalNameID(unsigned int val) { // Property Generated Setter
45 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0xE8) = val;
46 }
47
48};
Definition GoalEntry.h:6
void setQuestID(gid val)
Definition GoalEntry.h:12
std::string getGoalTitle()
Definition GoalEntry.h:24
gid getQuestID()
Definition GoalEntry.h:8
unsigned int getGoalNameID()
Definition GoalEntry.h:40
void setGoalTitle(std::string val)
Definition GoalEntry.h:28
gid getGoalID()
Definition GoalEntry.h:16
void setGoalID(gid val)
Definition GoalEntry.h:20
void setGoalNameID(unsigned int val)
Definition GoalEntry.h:44
std::string getQuestTitle()
Definition GoalEntry.h:32
void setQuestTitle(std::string val)
Definition GoalEntry.h:36
Definition ServiceOptionBase.h:5