mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
24 lines
496 B
C++
24 lines
496 B
C++
#ifndef _SLDRRSFAUDIO
|
|
#define _SLDRRSFAUDIO
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
#include "rstl/string.hpp"
|
|
|
|
struct SLdrRsfAudio {
|
|
SLdrRsfAudio();
|
|
~SLdrRsfAudio();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
rstl::string unknown;
|
|
int loopStart;
|
|
int loopEnd;
|
|
float fadeInTime;
|
|
float fadeOutTime;
|
|
int volume;
|
|
};
|
|
|
|
void LoadTypedefSLdrRsfAudio(SLdrRsfAudio&, CInputStream&);
|
|
|
|
#endif // _SLDRRSFAUDIO
|