2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRAMBIENTAI
|
|
|
|
|
#define _SLDRAMBIENTAI
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrActorParameters.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrAnimationParameters.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrDamageVulnerability.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrHealthInfo.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrAmbientAI {
|
|
|
|
|
SLdrAmbientAI();
|
|
|
|
|
~SLdrAmbientAI();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
CVector3f collisionBox;
|
|
|
|
|
CVector3f collisionOffset;
|
2023-08-09 23:45:58 +03:00
|
|
|
float mass;
|
|
|
|
|
SLdrHealthInfo health;
|
|
|
|
|
SLdrDamageVulnerability vulnerability;
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrAnimationParameters animationInformation;
|
|
|
|
|
SLdrActorParameters actorInformation;
|
|
|
|
|
float detectRadius;
|
|
|
|
|
float explodeRadius;
|
2023-08-09 23:45:58 +03:00
|
|
|
int unknown_0xbfe017de;
|
|
|
|
|
int unknown_0xed5f16ac;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrAmbientAI(SLdrAmbientAI&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRAMBIENTAI
|