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