Cyrus Mod Loader
Loading...
Searching...
No Matches
LeashedPathMovementBehaviorTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorTemplate.h>
4#include <Cyrus/Classes/PathMovementBehaviorTemplate.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
8public:
9 bool getCanFly() { // Property Generated Getter
10 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x80);
11 }
12
13 void setCanFly(bool val) { // Property Generated Setter
14 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
15 }
16
17 gid getMountTemplateID() { // Property Generated Getter
18 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x88);
19 }
20
21 void setMountTemplateID(gid val) { // Property Generated Setter
22 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
23 }
24
25 gid getPathID() { // Property Generated Getter
26 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x90);
27 }
28
29 void setPathID(gid val) { // Property Generated Setter
30 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
31 }
32
33};
Definition LeashedPathMovementBehaviorTemplate.h:7
gid getMountTemplateID()
Definition LeashedPathMovementBehaviorTemplate.h:17
void setCanFly(bool val)
Definition LeashedPathMovementBehaviorTemplate.h:13
gid getPathID()
Definition LeashedPathMovementBehaviorTemplate.h:25
void setMountTemplateID(gid val)
Definition LeashedPathMovementBehaviorTemplate.h:21
void setPathID(gid val)
Definition LeashedPathMovementBehaviorTemplate.h:29
bool getCanFly()
Definition LeashedPathMovementBehaviorTemplate.h:9
Definition PathMovementBehaviorTemplate.h:6