2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRCONTROLHINT
|
|
|
|
|
#define _SLDRCONTROLHINT
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrControlHintStruct.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrControlHint {
|
|
|
|
|
SLdrControlHint();
|
|
|
|
|
~SLdrControlHint();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
int priority;
|
|
|
|
|
float timer;
|
2023-08-11 22:35:54 +03:00
|
|
|
int cancelMethod;
|
|
|
|
|
int cancelPressCount;
|
|
|
|
|
float cancelPressTime;
|
|
|
|
|
float cancelTimer;
|
2023-08-09 23:45:58 +03:00
|
|
|
int unknown;
|
|
|
|
|
SLdrControlHintStruct command1;
|
|
|
|
|
SLdrControlHintStruct command2;
|
|
|
|
|
SLdrControlHintStruct command3;
|
|
|
|
|
SLdrControlHintStruct command4;
|
|
|
|
|
SLdrControlHintStruct command5;
|
|
|
|
|
SLdrControlHintStruct command6;
|
|
|
|
|
SLdrControlHintStruct command7;
|
|
|
|
|
SLdrControlHintStruct command8;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrControlHint(SLdrControlHint&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRCONTROLHINT
|