2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRINGBLOBSWARM
|
|
|
|
|
#define _SLDRINGBLOBSWARM
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrActorParameters.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrAnimationParameters.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrBasicSwarmProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrIngBlobSwarm {
|
|
|
|
|
SLdrIngBlobSwarm();
|
|
|
|
|
~SLdrIngBlobSwarm();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
SLdrActorParameters actorInformation;
|
|
|
|
|
SLdrAnimationParameters animationInformation;
|
2023-08-09 23:45:58 +03:00
|
|
|
bool active;
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrBasicSwarmProperties basicSwarmProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
int unknown_0x7399abbb;
|
|
|
|
|
int unknown_0x734d923b;
|
2023-08-11 22:35:54 +03:00
|
|
|
float maxAttackAngle;
|
|
|
|
|
float intoAttackSpeed;
|
|
|
|
|
float attackSpeed;
|
2023-08-09 23:45:58 +03:00
|
|
|
float mass;
|
2023-08-11 22:35:54 +03:00
|
|
|
float maxAttackHeight;
|
|
|
|
|
CVector3f attackAimOffset;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrIngBlobSwarm(SLdrIngBlobSwarm&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRINGBLOBSWARM
|