mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
24 lines
656 B
C++
24 lines
656 B
C++
#ifndef _SLDRPLATFORMMOTIONPROPERTIES
|
|
#define _SLDRPLATFORMMOTIONPROPERTIES
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrSplineType.hpp"
|
|
|
|
struct SLdrPlatformMotionProperties {
|
|
SLdrPlatformMotionProperties();
|
|
~SLdrPlatformMotionProperties();
|
|
|
|
SLdrSplineType motionSplineType;
|
|
spline motionControlSpline;
|
|
float motionSplineDuration;
|
|
float initialTime;
|
|
int unknown;
|
|
spline rollControlSpline;
|
|
spline yawControlSpline;
|
|
spline pitchControlSpline;
|
|
};
|
|
|
|
void LoadTypedefSLdrPlatformMotionProperties(SLdrPlatformMotionProperties&, CInputStream&);
|
|
|
|
#endif // _SLDRPLATFORMMOTIONPROPERTIES
|