Cyrus Mod Loader
Loading...
Searching...
No Matches
WaypointGoalTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CoreTemplate.h>
4#include <Cyrus/Classes/GoalTemplate.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
8public:
9 bool getZoneEntry() { // Property Generated Getter
10 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x208);
11 }
12
13 void setZoneEntry(bool val) { // Property Generated Setter
14 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x208) = val;
15 }
16
17 std::string getZoneTag() { // Property Generated Getter
18 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x210);
19 }
20
21 void setZoneTag(std::string val) { // Property Generated Setter
22 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x210) = val;
23 }
24
25 std::string getProximityTag() { // Property Generated Getter
26 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x230);
27 }
28
29 void setProximityTag(std::string val) { // Property Generated Setter
30 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x230) = val;
31 }
32
33 bool getZoneExit() { // Property Generated Getter
34 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x209);
35 }
36
37 void setZoneExit(bool val) { // Property Generated Setter
38 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x209) = val;
39 }
40
41};
Definition GoalTemplate.h:7
Definition WaypointGoalTemplate.h:7
std::string getProximityTag()
Definition WaypointGoalTemplate.h:25
void setProximityTag(std::string val)
Definition WaypointGoalTemplate.h:29
bool getZoneEntry()
Definition WaypointGoalTemplate.h:9
void setZoneTag(std::string val)
Definition WaypointGoalTemplate.h:21
bool getZoneExit()
Definition WaypointGoalTemplate.h:33
void setZoneEntry(bool val)
Definition WaypointGoalTemplate.h:13
void setZoneExit(bool val)
Definition WaypointGoalTemplate.h:37
std::string getZoneTag()
Definition WaypointGoalTemplate.h:17