Files
Henrique Gemignani Passos Lima 7539fb92cb cammelCase for intermediate structs
2023-08-11 22:35:54 +03:00

33 lines
871 B
C++

#ifndef _SLDRCONTROLHINT
#define _SLDRCONTROLHINT
#include "Kyoto/Streams/CInputStream.hpp"
#include "MetroidPrime/ScriptLoader/SLdrControlHintStruct.hpp"
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
struct SLdrControlHint {
SLdrControlHint();
~SLdrControlHint();
SLdrEditorProperties editorProperties;
int priority;
float timer;
int cancelMethod;
int cancelPressCount;
float cancelPressTime;
float cancelTimer;
int unknown;
SLdrControlHintStruct command1;
SLdrControlHintStruct command2;
SLdrControlHintStruct command3;
SLdrControlHintStruct command4;
SLdrControlHintStruct command5;
SLdrControlHintStruct command6;
SLdrControlHintStruct command7;
SLdrControlHintStruct command8;
};
void LoadTypedefSLdrControlHint(SLdrControlHint&, CInputStream&);
#endif // _SLDRCONTROLHINT