mirror of
https://github.com/wiiu-env/MochaLite.git
synced 2024-11-01 02:25:10 +01:00
12 lines
210 B
C
12 lines
210 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
|