mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
21 lines
442 B
C++
21 lines
442 B
C++
#ifndef _SLDRECHOPARAMETERS
|
|
#define _SLDRECHOPARAMETERS
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
struct SLdrEchoParameters {
|
|
SLdrEchoParameters();
|
|
~SLdrEchoParameters();
|
|
|
|
bool isEchoEmitter;
|
|
bool onlyEmitDamage;
|
|
int numSoundWaves;
|
|
float spaceBetweenWaves;
|
|
float waveLineSize;
|
|
float forcedMinimumVis;
|
|
};
|
|
|
|
void LoadTypedefSLdrEchoParameters(SLdrEchoParameters&, CInputStream&);
|
|
|
|
#endif // _SLDRECHOPARAMETERS
|