Cyrus Mod Loader
Loading...
Searching...
No Matches
TubeGeomParams.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GeomParams.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
6class TubeGeomParams : public GeomParams {
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 GeomParams.h:6
Definition TubeGeomParams.h:6
float getFRadius()
Definition TubeGeomParams.h:8
float getFLength()
Definition TubeGeomParams.h:16
void setFRadius(float val)
Definition TubeGeomParams.h:12
void setFLength(float val)
Definition TubeGeomParams.h:20