Cyrus Mod Loader
Loading...
Searching...
No Matches
BoxGeomParams.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GeomParams.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
6class BoxGeomParams : public GeomParams {
7public:
8 float getFLength() { // Property Generated Getter
9 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x50);
10 }
11
12 void setFLength(float val) { // Property Generated Setter
13 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
14 }
15
16 float getFWidth() { // Property Generated Getter
17 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x54);
18 }
19
20 void setFWidth(float val) { // Property Generated Setter
21 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x54) = val;
22 }
23
24 float getFDepth() { // Property Generated Getter
25 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x58);
26 }
27
28 void setFDepth(float val) { // Property Generated Setter
29 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
30 }
31
32};
Definition BoxGeomParams.h:6
void setFLength(float val)
Definition BoxGeomParams.h:12
float getFDepth()
Definition BoxGeomParams.h:24
float getFLength()
Definition BoxGeomParams.h:8
void setFWidth(float val)
Definition BoxGeomParams.h:20
void setFDepth(float val)
Definition BoxGeomParams.h:28
float getFWidth()
Definition BoxGeomParams.h:16
Definition GeomParams.h:6