2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRSPANKWEED
|
|
|
|
|
#define _SLDRSPANKWEED
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrActorParameters.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrPatternedAITypedef.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrSpankWeed {
|
|
|
|
|
SLdrSpankWeed();
|
|
|
|
|
~SLdrSpankWeed();
|
|
|
|
|
|
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;
|
2023-08-09 23:45:58 +03:00
|
|
|
bool unknown;
|
2023-08-11 22:35:54 +03:00
|
|
|
float wakeUpRadius;
|
|
|
|
|
float searchRadius;
|
|
|
|
|
float attackRadius;
|
|
|
|
|
float hurtSleepDelay;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrSpankWeed(SLdrSpankWeed&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRSPANKWEED
|