mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
24 lines
519 B
C++
24 lines
519 B
C++
#ifndef _SLDRSOUNDMODIFIER
|
|
#define _SLDRSOUNDMODIFIER
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrSoundModifier {
|
|
SLdrSoundModifier();
|
|
~SLdrSoundModifier();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
float time;
|
|
bool autoReset;
|
|
bool autoStart;
|
|
spline volume;
|
|
spline pan;
|
|
spline surroundPan;
|
|
spline pitch;
|
|
};
|
|
|
|
void LoadTypedefSLdrSoundModifier(SLdrSoundModifier&, CInputStream&);
|
|
|
|
#endif // _SLDRSOUNDMODIFIER
|