2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRGRAPPLEPARAMETERS
|
|
|
|
|
#define _SLDRGRAPPLEPARAMETERS
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrGrappleParameters {
|
|
|
|
|
SLdrGrappleParameters();
|
|
|
|
|
~SLdrGrappleParameters();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
float grappleLength;
|
|
|
|
|
float grappleAttachLength;
|
|
|
|
|
float grappleSpringConstant;
|
|
|
|
|
float grappleSpringLength;
|
2023-08-09 23:45:58 +03:00
|
|
|
float unknown_0x987f68c7;
|
2023-08-11 22:35:54 +03:00
|
|
|
float swingForce;
|
|
|
|
|
float swingMaxForce;
|
|
|
|
|
float swingArcAngle;
|
|
|
|
|
float swingTurnAngle;
|
|
|
|
|
float swingCameraPitch;
|
2023-08-09 23:45:58 +03:00
|
|
|
float unknown_0xf9e45827;
|
|
|
|
|
bool unknown_0x11b6a17a;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrGrappleParameters(SLdrGrappleParameters&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRGRAPPLEPARAMETERS
|