Cyrus Mod Loader
Loading...
Searching...
No Matches
MassShapeTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Enums/MassShapeTemplate__MassShape.h>
5
7public:
8 float getFCenterOfMassX() { // Property Generated Getter
9 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setFCenterOfMassX(float val) { // Property Generated Setter
13 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 float getFCenterOfMassY() { // Property Generated Getter
17 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x4C);
18 }
19
20 void setFCenterOfMassY(float val) { // Property Generated Setter
21 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x4C) = val;
22 }
23
24 float getFCenterOfMassZ() { // Property Generated Getter
25 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x50);
26 }
27
28 void setFCenterOfMassZ(float val) { // Property Generated Setter
29 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
30 }
31
32 MassShapeTemplate__MassShape getMassShape() { // Property Generated Getter
33 return *reinterpret_cast<MassShapeTemplate__MassShape*>(reinterpret_cast<uintptr_t>(this) + 0x54);
34 }
35
36 void setMassShape(MassShapeTemplate__MassShape val) { // Property Generated Setter
37 *reinterpret_cast<MassShapeTemplate__MassShape*>(reinterpret_cast<uintptr_t>(this) + 0x54) = val;
38 }
39
40 float getFRadiusMeters() { // Property Generated Getter
41 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x58);
42 }
43
44 void setFRadiusMeters(float val) { // Property Generated Setter
45 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
46 }
47
48 int getCylinderDirection() { // Property Generated Getter
49 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x5C);
50 }
51
52 void setCylinderDirection(int val) { // Property Generated Setter
53 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x5C) = val;
54 }
55
56 float getFLength() { // Property Generated Getter
57 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x60);
58 }
59
60 void setFLength(float val) { // Property Generated Setter
61 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x60) = val;
62 }
63
64 float getFWidth() { // Property Generated Getter
65 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x64);
66 }
67
68 void setFWidth(float val) { // Property Generated Setter
69 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x64) = val;
70 }
71
72 float getFHeight() { // Property Generated Getter
73 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x68);
74 }
75
76 void setFHeight(float val) { // Property Generated Setter
77 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
78 }
79
80 float getFMassKilograms() { // Property Generated Getter
81 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x6C);
82 }
83
84 void setFMassKilograms(float val) { // Property Generated Setter
85 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x6C) = val;
86 }
87
88};
Definition MassShapeTemplate.h:6
float getFWidth()
Definition MassShapeTemplate.h:64
float getFCenterOfMassZ()
Definition MassShapeTemplate.h:24
void setCylinderDirection(int val)
Definition MassShapeTemplate.h:52
float getFLength()
Definition MassShapeTemplate.h:56
void setMassShape(MassShapeTemplate__MassShape val)
Definition MassShapeTemplate.h:36
void setFRadiusMeters(float val)
Definition MassShapeTemplate.h:44
void setFCenterOfMassY(float val)
Definition MassShapeTemplate.h:20
float getFMassKilograms()
Definition MassShapeTemplate.h:80
void setFMassKilograms(float val)
Definition MassShapeTemplate.h:84
void setFLength(float val)
Definition MassShapeTemplate.h:60
float getFCenterOfMassY()
Definition MassShapeTemplate.h:16
void setFCenterOfMassX(float val)
Definition MassShapeTemplate.h:12
int getCylinderDirection()
Definition MassShapeTemplate.h:48
void setFCenterOfMassZ(float val)
Definition MassShapeTemplate.h:28
float getFRadiusMeters()
Definition MassShapeTemplate.h:40
float getFHeight()
Definition MassShapeTemplate.h:72
void setFWidth(float val)
Definition MassShapeTemplate.h:68
void setFHeight(float val)
Definition MassShapeTemplate.h:76
MassShapeTemplate__MassShape getMassShape()
Definition MassShapeTemplate.h:32
float getFCenterOfMassX()
Definition MassShapeTemplate.h:8
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86