mirror of
https://github.com/wiiu-env/MochaPayload.git
synced 2025-01-23 05:21:11 +01:00
15 lines
213 B
C
15 lines
213 B
C
#ifndef TEXT_H
|
|
#define TEXT_H
|
|
|
|
#include "types.h"
|
|
|
|
void drawSplashScreen(void);
|
|
|
|
void clearScreen(u32 color);
|
|
|
|
void drawString(char *str, int x, int y);
|
|
|
|
void print(int x, int y, const char *format, ...);
|
|
|
|
#endif
|