mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
21 lines
413 B
C++
21 lines
413 B
C++
#ifndef _SLDRCOUNTER
|
|
#define _SLDRCOUNTER
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrCounter {
|
|
SLdrCounter();
|
|
~SLdrCounter();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
int initialCount;
|
|
int maxCount;
|
|
bool autoReset;
|
|
bool wrap;
|
|
};
|
|
|
|
void LoadTypedefSLdrCounter(SLdrCounter&, CInputStream&);
|
|
|
|
#endif // _SLDRCOUNTER
|