mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
22 lines
430 B
C++
22 lines
430 B
C++
#ifndef _SLDRMIDI
|
|
#define _SLDRMIDI
|
|
|
|
#include "Kyoto/SObjectTag.hpp"
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrMidi {
|
|
SLdrMidi();
|
|
~SLdrMidi();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
CAssetId songFile;
|
|
float fadeInTime;
|
|
float fadeOutTime;
|
|
int volume;
|
|
};
|
|
|
|
void LoadTypedefSLdrMidi(SLdrMidi&, CInputStream&);
|
|
|
|
#endif // _SLDRMIDI
|