mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
19 lines
480 B
C++
19 lines
480 B
C++
#ifndef _SLDRRUBIKSPUZZLE
|
|
#define _SLDRRUBIKSPUZZLE
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrUnknownStruct35.hpp"
|
|
|
|
struct SLdrRubiksPuzzle {
|
|
SLdrRubiksPuzzle();
|
|
~SLdrRubiksPuzzle();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
SLdrUnknownStruct35 unknownStruct35;
|
|
};
|
|
|
|
void LoadTypedefSLdrRubiksPuzzle(SLdrRubiksPuzzle&, CInputStream&);
|
|
|
|
#endif // _SLDRRUBIKSPUZZLE
|