mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
19 lines
404 B
C++
19 lines
404 B
C++
#ifndef _SLDRAIJUMPPOINT
|
|
#define _SLDRAIJUMPPOINT
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrAIJumpPoint {
|
|
SLdrAIJumpPoint();
|
|
~SLdrAIJumpPoint();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
float jumpApex;
|
|
int type;
|
|
};
|
|
|
|
void LoadTypedefSLdrAIJumpPoint(SLdrAIJumpPoint&, CInputStream&);
|
|
|
|
#endif // _SLDRAIJUMPPOINT
|