Cyrus Mod Loader
Loading...
Searching...
No Matches
CompassMarker.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 std::string getTextKey() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setTextKey(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 Vector3D getLocation() { // Property Generated Getter
16 return *reinterpret_cast<Vector3D*>(reinterpret_cast<uintptr_t>(this) + 0x68);
17 }
18
19 void setLocation(Vector3D val) { // Property Generated Setter
20 *reinterpret_cast<Vector3D*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
21 }
22
23 Point<int> getMapLocation() { // Property Generated Getter
24 return *reinterpret_cast<Point<int>*>(reinterpret_cast<uintptr_t>(this) + 0x74);
25 }
26
27 void setMapLocation(Point<int> val) { // Property Generated Setter
28 *reinterpret_cast<Point<int>*>(reinterpret_cast<uintptr_t>(this) + 0x74) = val;
29 }
30
31 gid getNObjectID() { // Property Generated Getter
32 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x80);
33 }
34
35 void setNObjectID(gid val) { // Property Generated Setter
36 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
37 }
38
39 bool getVisible() { // Property Generated Getter
40 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x88);
41 }
42
43 void setVisible(bool val) { // Property Generated Setter
44 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
45 }
46
47};
Definition CompassMarker.h:5
Point< int > getMapLocation()
Definition CompassMarker.h:23
gid getNObjectID()
Definition CompassMarker.h:31
void setLocation(Vector3D val)
Definition CompassMarker.h:19
std::string getTextKey()
Definition CompassMarker.h:7
void setVisible(bool val)
Definition CompassMarker.h:43
bool getVisible()
Definition CompassMarker.h:39
void setNObjectID(gid val)
Definition CompassMarker.h:35
void setTextKey(std::string val)
Definition CompassMarker.h:11
Vector3D getLocation()
Definition CompassMarker.h:15
void setMapLocation(Point< int > val)
Definition CompassMarker.h:27
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition shared.h:12