2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRAIWAYPOINT
|
|
|
|
|
#define _SLDRAIWAYPOINT
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrAIWaypoint {
|
|
|
|
|
SLdrAIWaypoint();
|
|
|
|
|
~SLdrAIWaypoint();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
float speed;
|
|
|
|
|
float pause;
|
|
|
|
|
int unknown_0xc6705a00;
|
2023-08-11 22:35:54 +03:00
|
|
|
int locatorIndex;
|
2023-08-09 23:45:58 +03:00
|
|
|
int unknown_0x166979d4;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrAIWaypoint(SLdrAIWaypoint&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRAIWAYPOINT
|