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