mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
21 lines
455 B
C++
21 lines
455 B
C++
#ifndef _SLDRRANDOMRELAY
|
|
#define _SLDRRANDOMRELAY
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrRandomRelay {
|
|
SLdrRandomRelay();
|
|
~SLdrRandomRelay();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
int count;
|
|
int randomAdjust;
|
|
bool percentCount;
|
|
bool isRandomChance;
|
|
};
|
|
|
|
void LoadTypedefSLdrRandomRelay(SLdrRandomRelay&, CInputStream&);
|
|
|
|
#endif // _SLDRRANDOMRELAY
|