2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRCONTROLLERACTION
|
|
|
|
|
#define _SLDRCONTROLLERACTION
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrControllerActionStruct.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrControllerAction {
|
|
|
|
|
SLdrControllerAction();
|
|
|
|
|
~SLdrControllerAction();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
SLdrControllerActionStruct controllerActionStruct;
|
|
|
|
|
bool oneShot;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrControllerAction(SLdrControllerAction&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRCONTROLLERACTION
|