Files
echoes/include/MetroidPrime/ScriptLoader/SLdrPlatformMotionProperties.hpp
Henrique Gemignani Passos Lima 470cb479e8 Add Splines to SLdr
2025-01-14 03:40:29 +02:00

25 lines
710 B
C++

#ifndef _SLDRPLATFORMMOTIONPROPERTIES
#define _SLDRPLATFORMMOTIONPROPERTIES
#include "Kyoto/Math/CMayaSpline.hpp"
#include "Kyoto/Streams/CInputStream.hpp"
#include "MetroidPrime/ScriptLoader/SLdrSplineType.hpp"
struct SLdrPlatformMotionProperties {
SLdrPlatformMotionProperties();
~SLdrPlatformMotionProperties();
SLdrSplineType motionSplineType;
SLdrSpline motionControlSpline;
float motionSplineDuration;
float initialTime;
int unknown;
SLdrSpline rollControlSpline;
SLdrSpline yawControlSpline;
SLdrSpline pitchControlSpline;
};
void LoadTypedefSLdrPlatformMotionProperties(SLdrPlatformMotionProperties&, CInputStream&);
#endif // _SLDRPLATFORMMOTIONPROPERTIES