2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRPUDDLESPORE
|
|
|
|
|
#define _SLDRPUDDLESPORE
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrActorParameters.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrPatternedAITypedef.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrShockWaveInfo.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrPuddleSpore {
|
|
|
|
|
SLdrPuddleSpore();
|
|
|
|
|
~SLdrPuddleSpore();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
int flavor;
|
|
|
|
|
SLdrPatternedAITypedef patterned;
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrActorParameters actorInformation;
|
2023-08-09 23:45:58 +03:00
|
|
|
bool unknown_0x5cdc877d;
|
2023-08-11 22:35:54 +03:00
|
|
|
float chargeTime;
|
|
|
|
|
float timeOpen;
|
|
|
|
|
float platformTime;
|
2023-08-09 23:45:58 +03:00
|
|
|
float unknown_0xf1c2d224;
|
|
|
|
|
float unknown_0x3c6af2ac;
|
2023-08-11 22:35:54 +03:00
|
|
|
float hitDetectionAngle;
|
|
|
|
|
float shockWaveHeight;
|
2023-08-09 23:45:58 +03:00
|
|
|
int sound;
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrShockWaveInfo shockWaveInfo;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrPuddleSpore(SLdrPuddleSpore&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRPUDDLESPORE
|