mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 17:29:17 +01:00
27 lines
532 B
C
27 lines
532 B
C
|
#ifndef STARTUPPROCESS_H_
|
||
|
#define STARTUPPROCESS_H_
|
||
|
|
||
|
#include "libwiigui/gui.h"
|
||
|
|
||
|
class StartUpProcess
|
||
|
{
|
||
|
public:
|
||
|
static bool Run();
|
||
|
private:
|
||
|
StartUpProcess();
|
||
|
~StartUpProcess();
|
||
|
bool Execute();
|
||
|
bool USBSpinUp();
|
||
|
void TextFade(int direction);
|
||
|
void SetTextf(const char * format, ...);
|
||
|
void Draw();
|
||
|
|
||
|
GuiImageData * GXImageData;
|
||
|
GuiImage * background;
|
||
|
GuiImage * GXImage;
|
||
|
GuiText * titleTxt;
|
||
|
GuiText * messageTxt;
|
||
|
};
|
||
|
|
||
|
#endif
|