2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRPLAYERSTATECHANGE
|
|
|
|
|
#define _SLDRPLAYERSTATECHANGE
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrPlayerStateChange {
|
|
|
|
|
SLdrPlayerStateChange();
|
|
|
|
|
~SLdrPlayerStateChange();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
int itemToChange;
|
|
|
|
|
int capacityIncrease;
|
2023-08-09 23:45:58 +03:00
|
|
|
int amount;
|
|
|
|
|
int command;
|
2023-08-11 22:35:54 +03:00
|
|
|
int commandAction;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrPlayerStateChange(SLdrPlayerStateChange&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRPLAYERSTATECHANGE
|