2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRSCRIPTLAYERCONTROLLER
|
|
|
|
|
#define _SLDRSCRIPTLAYERCONTROLLER
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrLayerSwitch.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrScriptLayerController {
|
|
|
|
|
SLdrScriptLayerController();
|
|
|
|
|
~SLdrScriptLayerController();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
SLdrLayerSwitch layer;
|
2023-08-11 22:35:54 +03:00
|
|
|
bool isDynamic;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrScriptLayerController(SLdrScriptLayerController&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRSCRIPTLAYERCONTROLLER
|