mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
22 lines
533 B
C++
22 lines
533 B
C++
#ifndef _SLDRGUIMENU
|
|
#define _SLDRGUIMENU
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrGuiWidgetProperties.hpp"
|
|
|
|
struct SLdrGuiMenu {
|
|
SLdrGuiMenu();
|
|
~SLdrGuiMenu();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
SLdrGuiWidgetProperties guiWidgetProperties;
|
|
int controlDirection;
|
|
bool wrapSelection;
|
|
int selectionChangedSound;
|
|
};
|
|
|
|
void LoadTypedefSLdrGuiMenu(SLdrGuiMenu&, CInputStream&);
|
|
|
|
#endif // _SLDRGUIMENU
|