usbloadergx/source/banner/gui_banner.h

30 lines
614 B
C++

/****************************************************************************
* USB Loader GX Team
* gui_banner.h
*
* Shows TPL Banner images
***************************************************************************/
#ifndef _GUIBANNER_H_
#define _GUIBANNER_H_
#include "libwiigui/gui.h"
class GuiBanner : public GuiImage
{
public:
GuiBanner();
GuiBanner(const char *tplfilepath);
GuiBanner(void *mem,u32 len,u16 w, u16 h);
~GuiBanner();
void Draw();
private:
f32 deg_beta;
const char *filepath;
const void *memory;
bool filecheck;
};
#endif /* _GUIBANNER_H_ */