Cyrus Mod Loader
Loading...
Searching...
No Matches
PathMovementBehaviorTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorTemplate.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 float getMovementSpeed() { // Property Generated Getter
9 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x78);
10 }
11
12 void setMovementSpeed(float val) { // Property Generated Setter
13 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
14 }
15
16 float getMovementScale() { // Property Generated Getter
17 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x7C);
18 }
19
20 void setMovementScale(float val) { // Property Generated Setter
21 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x7C) = val;
22 }
23
24};
Definition BehaviorTemplate.h:13
Definition PathMovementBehaviorTemplate.h:6
void setMovementSpeed(float val)
Definition PathMovementBehaviorTemplate.h:12
void setMovementScale(float val)
Definition PathMovementBehaviorTemplate.h:20
float getMovementScale()
Definition PathMovementBehaviorTemplate.h:16
float getMovementSpeed()
Definition PathMovementBehaviorTemplate.h:8