mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 17:59:16 +01:00
30 lines
614 B
C++
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_ */
|