2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRFLYERSWARM
|
|
|
|
|
#define _SLDRFLYERSWARM
|
|
|
|
|
|
|
|
|
|
#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 SLdrFlyerSwarm {
|
|
|
|
|
SLdrFlyerSwarm();
|
|
|
|
|
~SLdrFlyerSwarm();
|
|
|
|
|
|
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
|
|
|
float unknown_0x4a85a2da;
|
|
|
|
|
float unknown_0x10cccd3c;
|
|
|
|
|
float unknown_0x1e8e90a4;
|
|
|
|
|
float unknown_0x262e586d;
|
2023-08-11 22:35:54 +03:00
|
|
|
float rollUprightSpeed;
|
|
|
|
|
float rollUprightMinAngle;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrFlyerSwarm(SLdrFlyerSwarm&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRFLYERSWARM
|