mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
18 lines
348 B
C++
18 lines
348 B
C++
#ifndef _SLDRRIPPLE
|
|
#define _SLDRRIPPLE
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrRipple {
|
|
SLdrRipple();
|
|
~SLdrRipple();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
float energy;
|
|
};
|
|
|
|
void LoadTypedefSLdrRipple(SLdrRipple&, CInputStream&);
|
|
|
|
#endif // _SLDRRIPPLE
|