Cyrus Mod Loader
Loading...
Searching...
No Matches
MoveCommandTime.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/MoveController::MoveCommand.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
6class MoveCommandTime : public MoveController::MoveCommand {
7public:
8 Vector3D getVTarget() { // Property Generated Getter
9 return *reinterpret_cast<Vector3D*>(reinterpret_cast<uintptr_t>(this) + 0x64);
10 }
11
12 void setVTarget(Vector3D val) { // Property Generated Setter
13 *reinterpret_cast<Vector3D*>(reinterpret_cast<uintptr_t>(this) + 0x64) = val;
14 }
15
16 float getFTime() { // Property Generated Getter
17 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x7C);
18 }
19
20 void setFTime(float val) { // Property Generated Setter
21 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x7C) = val;
22 }
23
24};
Definition MoveCommandTime.h:6
Vector3D getVTarget()
Definition MoveCommandTime.h:8
float getFTime()
Definition MoveCommandTime.h:16
void setVTarget(Vector3D val)
Definition MoveCommandTime.h:12
void setFTime(float val)
Definition MoveCommandTime.h:20
Definition shared.h:12