mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
25 lines
573 B
C++
25 lines
573 B
C++
#ifndef _SLDRSOUNDMODIFIER
|
|
#define _SLDRSOUNDMODIFIER
|
|
|
|
#include "Kyoto/Math/CMayaSpline.hpp"
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrSoundModifier {
|
|
SLdrSoundModifier();
|
|
~SLdrSoundModifier();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
float time;
|
|
bool autoReset;
|
|
bool autoStart;
|
|
SLdrSpline volume;
|
|
SLdrSpline pan;
|
|
SLdrSpline surroundPan;
|
|
SLdrSpline pitch;
|
|
};
|
|
|
|
void LoadTypedefSLdrSoundModifier(SLdrSoundModifier&, CInputStream&);
|
|
|
|
#endif // _SLDRSOUNDMODIFIER
|