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