2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRPOINTOFINTEREST
|
|
|
|
|
#define _SLDRPOINTOFINTEREST
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
|
#include "MetroidPrime/ScriptLoader/SLdrScannableParameters.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrPointOfInterest {
|
|
|
|
|
SLdrPointOfInterest();
|
|
|
|
|
~SLdrPointOfInterest();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
|
|
|
|
SLdrScannableParameters scanInfo;
|
|
|
|
|
float scanOffset;
|
|
|
|
|
bool lookAtPoi;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrPointOfInterest(SLdrPointOfInterest&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRPOINTOFINTEREST
|