mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
26 lines
584 B
C++
26 lines
584 B
C++
#ifndef _SLDRSTREAMEDMOVIE
|
|
#define _SLDRSTREAMEDMOVIE
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
#include "rstl/string.hpp"
|
|
|
|
struct SLdrStreamedMovie {
|
|
SLdrStreamedMovie();
|
|
~SLdrStreamedMovie();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
rstl::string movieFile;
|
|
bool loop;
|
|
bool videoFilterEnabled;
|
|
int unknown;
|
|
int volume;
|
|
int volumeType;
|
|
float cacheLength;
|
|
float fadeOutTime;
|
|
};
|
|
|
|
void LoadTypedefSLdrStreamedMovie(SLdrStreamedMovie&, CInputStream&);
|
|
|
|
#endif // _SLDRSTREAMEDMOVIE
|