Files

24 lines
519 B
C++
Raw Permalink Normal View History

#ifndef _SLDRSOUNDMODIFIER
#define _SLDRSOUNDMODIFIER
#include "Kyoto/Streams/CInputStream.hpp"
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
struct SLdrSoundModifier {
SLdrSoundModifier();
~SLdrSoundModifier();
2023-08-11 22:35:54 +03:00
SLdrEditorProperties editorProperties;
float time;
2023-08-11 22:35:54 +03:00
bool autoReset;
bool autoStart;
spline volume;
spline pan;
2023-08-11 22:35:54 +03:00
spline surroundPan;
spline pitch;
};
void LoadTypedefSLdrSoundModifier(SLdrSoundModifier&, CInputStream&);
#endif // _SLDRSOUNDMODIFIER