mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
21 lines
461 B
C++
21 lines
461 B
C++
#ifndef _SLDRCONDITIONALTEST
|
|
#define _SLDRCONDITIONALTEST
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrPlayerItem.hpp"
|
|
|
|
struct SLdrConditionalTest {
|
|
SLdrConditionalTest();
|
|
~SLdrConditionalTest();
|
|
|
|
int boolean;
|
|
SLdrPlayerItem playerItem;
|
|
int amountOrCapacity;
|
|
int condition;
|
|
int value;
|
|
};
|
|
|
|
void LoadTypedefSLdrConditionalTest(SLdrConditionalTest&, CInputStream&);
|
|
|
|
#endif // _SLDRCONDITIONALTEST
|