mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
18 lines
436 B
C++
18 lines
436 B
C++
#ifndef _SLDRCONTROLHINTSTRUCT
|
|
#define _SLDRCONTROLHINTSTRUCT
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrControllerActionStruct.hpp"
|
|
|
|
struct SLdrControlHintStruct {
|
|
SLdrControlHintStruct();
|
|
~SLdrControlHintStruct();
|
|
|
|
SLdrControllerActionStruct command;
|
|
int state;
|
|
};
|
|
|
|
void LoadTypedefSLdrControlHintStruct(SLdrControlHintStruct&, CInputStream&);
|
|
|
|
#endif // _SLDRCONTROLHINTSTRUCT
|