mirror of
https://github.com/wiiu-env/MochaLite.git
synced 2024-11-01 10:35:09 +01:00
12 lines
212 B
C
12 lines
212 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 _printf(int x, int y, const char *format, ...);
|
||
|
|
||
|
#endif
|