Cyrus Mod Loader
Loading...
Searching...
No Matches
PhysicsSimMassSphere.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PhysicsSimMass.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 float GetRadiusMeters() { // Function Generated
9 using FunctionPointerType = float (*)(PhysicsSimMassSphere *self);
10 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0xC41F70);
11 return inner(this);
12 }
13
14 void SetRadiusMeters(float a0) { // Function Generated
15 using FunctionPointerType = void (*)(PhysicsSimMassSphere *self, float a0);
16 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x14BCCA0);
17 return inner(this, a0);
18 }
19
20};
Definition PhysicsSimMass.h:5
Definition PhysicsSimMassSphere.h:6
void SetRadiusMeters(float a0)
Definition PhysicsSimMassSphere.h:14
float GetRadiusMeters()
Definition PhysicsSimMassSphere.h:8