2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRSPAWNPOINT
|
|
|
|
|
#define _SLDRSPAWNPOINT
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrSpawnPointStruct.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrSpawnPoint {
|
|
|
|
|
SLdrSpawnPoint();
|
|
|
|
|
~SLdrSpawnPoint();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
bool firstSpawn;
|
2023-08-09 23:45:58 +03:00
|
|
|
bool morphed;
|
|
|
|
|
SLdrSpawnPointStruct amount;
|
|
|
|
|
SLdrSpawnPointStruct capacity;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrSpawnPoint(SLdrSpawnPoint&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRSPAWNPOINT
|