mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
18 lines
441 B
C++
18 lines
441 B
C++
#ifndef _SLDRSPIDERBALLWAYPOINT
|
|
#define _SLDRSPIDERBALLWAYPOINT
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrSpiderBallWaypoint {
|
|
SLdrSpiderBallWaypoint();
|
|
~SLdrSpiderBallWaypoint();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
int flags;
|
|
};
|
|
|
|
void LoadTypedefSLdrSpiderBallWaypoint(SLdrSpiderBallWaypoint&, CInputStream&);
|
|
|
|
#endif // _SLDRSPIDERBALLWAYPOINT
|