Cyrus Mod Loader
Loading...
Searching...
No Matches
ComplexRotationInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 float getStartWeight() { // Property Generated Getter
8 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setStartWeight(float val) { // Property Generated Setter
12 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 float getMiddleWeight() { // Property Generated Getter
16 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x4C);
17 }
18
19 void setMiddleWeight(float val) { // Property Generated Setter
20 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x4C) = val;
21 }
22
23 float getEndWeight() { // Property Generated Getter
24 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x50);
25 }
26
27 void setEndWeight(float val) { // Property Generated Setter
28 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
29 }
30
31 float getDesiredSpeed() { // Property Generated Getter
32 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x54);
33 }
34
35 void setDesiredSpeed(float val) { // Property Generated Setter
36 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x54) = val;
37 }
38
39 float getDurationSeconds() { // Property Generated Getter
40 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x58);
41 }
42
43 void setDurationSeconds(float val) { // Property Generated Setter
44 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
45 }
46
47};
Definition ComplexRotationInfo.h:5
void setDurationSeconds(float val)
Definition ComplexRotationInfo.h:43
float getDurationSeconds()
Definition ComplexRotationInfo.h:39
float getEndWeight()
Definition ComplexRotationInfo.h:23
float getDesiredSpeed()
Definition ComplexRotationInfo.h:31
void setEndWeight(float val)
Definition ComplexRotationInfo.h:27
float getMiddleWeight()
Definition ComplexRotationInfo.h:15
void setDesiredSpeed(float val)
Definition ComplexRotationInfo.h:35
float getStartWeight()
Definition ComplexRotationInfo.h:7
void setStartWeight(float val)
Definition ComplexRotationInfo.h:11
void setMiddleWeight(float val)
Definition ComplexRotationInfo.h:19
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86