2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRACTORROTATE
|
|
|
|
|
#define _SLDRACTORROTATE
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrRotationSplines.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrScaleSplines.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrActorRotate {
|
|
|
|
|
SLdrActorRotate();
|
|
|
|
|
~SLdrActorRotate();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
int flagsActorRotate;
|
2023-08-09 23:45:58 +03:00
|
|
|
float duration;
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrRotationSplines rotationControls;
|
|
|
|
|
SLdrScaleSplines scaleControls;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrActorRotate(SLdrActorRotate&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRACTORROTATE
|