Cyrus Mod Loader
Loading...
Searching...
No Matches
HousingTeleporterBehaviorBase.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorInstance.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 gid getLotInstanceGID() { // Property Generated Getter
9 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x70);
10 }
11
12 void setLotInstanceGID(gid val) { // Property Generated Setter
13 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
14 }
15
16 float getX() { // Property Generated Getter
17 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x78);
18 }
19
20 void setX(float val) { // Property Generated Setter
21 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
22 }
23
24 float getY() { // Property Generated Getter
25 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x7C);
26 }
27
28 void setY(float val) { // Property Generated Setter
29 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x7C) = val;
30 }
31
32 float getZ() { // Property Generated Getter
33 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x80);
34 }
35
36 void setZ(float val) { // Property Generated Setter
37 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
38 }
39
40 float getYaw() { // Property Generated Getter
41 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x84);
42 }
43
44 void setYaw(float val) { // Property Generated Setter
45 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x84) = val;
46 }
47
48 gid getLotTemplateID() { // Property Generated Getter
49 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x88);
50 }
51
52 void setLotTemplateID(gid val) { // Property Generated Setter
53 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
54 }
55
56 gid getClusterGID() { // Property Generated Getter
57 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x90);
58 }
59
60 void setClusterGID(gid val) { // Property Generated Setter
61 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
62 }
63
64 gid getStructureInstanceGID() { // Property Generated Getter
65 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x98);
66 }
67
68 void setStructureInstanceGID(gid val) { // Property Generated Setter
69 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x98) = val;
70 }
71
72 gid getStructureTemplateID() { // Property Generated Getter
73 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0xA0);
74 }
75
76 void setStructureTemplateID(gid val) { // Property Generated Setter
77 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0xA0) = val;
78 }
79
80 bool getIsOutside() { // Property Generated Getter
81 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xA8);
82 }
83
84 void setIsOutside(bool val) { // Property Generated Setter
85 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xA8) = val;
86 }
87
88};
Definition BehaviorInstance.h:5
Definition HousingTeleporterBehaviorBase.h:6
float getY()
Definition HousingTeleporterBehaviorBase.h:24
float getYaw()
Definition HousingTeleporterBehaviorBase.h:40
gid getLotInstanceGID()
Definition HousingTeleporterBehaviorBase.h:8
void setZ(float val)
Definition HousingTeleporterBehaviorBase.h:36
gid getStructureInstanceGID()
Definition HousingTeleporterBehaviorBase.h:64
bool getIsOutside()
Definition HousingTeleporterBehaviorBase.h:80
gid getStructureTemplateID()
Definition HousingTeleporterBehaviorBase.h:72
gid getClusterGID()
Definition HousingTeleporterBehaviorBase.h:56
void setX(float val)
Definition HousingTeleporterBehaviorBase.h:20
float getZ()
Definition HousingTeleporterBehaviorBase.h:32
void setIsOutside(bool val)
Definition HousingTeleporterBehaviorBase.h:84
void setClusterGID(gid val)
Definition HousingTeleporterBehaviorBase.h:60
gid getLotTemplateID()
Definition HousingTeleporterBehaviorBase.h:48
void setStructureInstanceGID(gid val)
Definition HousingTeleporterBehaviorBase.h:68
void setY(float val)
Definition HousingTeleporterBehaviorBase.h:28
void setStructureTemplateID(gid val)
Definition HousingTeleporterBehaviorBase.h:76
void setLotTemplateID(gid val)
Definition HousingTeleporterBehaviorBase.h:52
float getX()
Definition HousingTeleporterBehaviorBase.h:16
void setYaw(float val)
Definition HousingTeleporterBehaviorBase.h:44
void setLotInstanceGID(gid val)
Definition HousingTeleporterBehaviorBase.h:12