mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
22 lines
431 B
C++
22 lines
431 B
C++
#ifndef _SLDRAIHINT
|
|
#define _SLDRAIHINT
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrAIHint {
|
|
SLdrAIHint();
|
|
~SLdrAIHint();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
int hintType;
|
|
float radius;
|
|
float valueParm;
|
|
float valueParm2;
|
|
float valueParm3;
|
|
};
|
|
|
|
void LoadTypedefSLdrAIHint(SLdrAIHint&, CInputStream&);
|
|
|
|
#endif // _SLDRAIHINT
|