Files

21 lines
413 B
C++
Raw Permalink Normal View History

#ifndef _SLDRCOUNTER
#define _SLDRCOUNTER
#include "Kyoto/Streams/CInputStream.hpp"
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
struct SLdrCounter {
SLdrCounter();
~SLdrCounter();
2023-08-11 22:35:54 +03:00
SLdrEditorProperties editorProperties;
int initialCount;
int maxCount;
bool autoReset;
bool wrap;
};
void LoadTypedefSLdrCounter(SLdrCounter&, CInputStream&);
#endif // _SLDRCOUNTER