Files
echoes/include/MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp

22 lines
552 B
C++

#ifndef _SLDREDITORPROPERTIES
#define _SLDREDITORPROPERTIES
#include "Kyoto/Streams/CInputStream.hpp"
#include "MetroidPrime/ScriptLoader/SLdrTransform.hpp"
#include "rstl/string.hpp"
struct SLdrEditorProperties {
SLdrEditorProperties();
~SLdrEditorProperties();
rstl::string name;
SLdrTransform transform;
bool active;
int unknown;
};
const CEntityInfo& LdrToEntityInfo(CEntityInfo&, const SLdrEditorProperties&);
void LoadTypedefSLdrEditorProperties(SLdrEditorProperties&, CInputStream&);
#endif // _SLDREDITORPROPERTIES