2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRCAMERAPITCH
|
|
|
|
|
#define _SLDRCAMERAPITCH
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrSplineType.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrCameraPitch {
|
|
|
|
|
SLdrCameraPitch();
|
|
|
|
|
~SLdrCameraPitch();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
spline forwardsPitch;
|
|
|
|
|
spline backwardsPitch;
|
|
|
|
|
SLdrSplineType splineType;
|
2023-08-09 23:45:58 +03:00
|
|
|
bool unknown;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrCameraPitch(SLdrCameraPitch&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRCAMERAPITCH
|