2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRSPLITTERCOMMANDMODULE
|
|
|
|
|
#define _SLDRSPLITTERCOMMANDMODULE
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrActorParameters.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrPatternedAITypedef.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrUnknownStruct43.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrSplitterCommandModule {
|
|
|
|
|
SLdrSplitterCommandModule();
|
|
|
|
|
~SLdrSplitterCommandModule();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
SLdrPatternedAITypedef patterned;
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrActorParameters actorInformation;
|
|
|
|
|
SLdrUnknownStruct43 unknownStruct43;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrSplitterCommandModule(SLdrSplitterCommandModule&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRSPLITTERCOMMANDMODULE
|