mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-15 16:05:10 +01:00
10 lines
252 B
C
10 lines
252 B
C
|
#ifndef BACKGROUND_IMAGE_H_
|
||
|
#define BACKGROUND_IMAGE_H_
|
||
|
|
||
|
u8 * GetImageData();
|
||
|
void Background_Show(float x, float y, float z, u8 * data, float angle, float scaleX, float scaleY, u8 alpha);
|
||
|
void fadein(u8 * imgdata);
|
||
|
void fadeout(u8 * imgdata);
|
||
|
|
||
|
#endif
|