2016-03-19 17:30:56 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#define SPACING_VERT 10
|
|
|
|
#define SPACING_HORIZ 8
|
|
|
|
|
2016-03-20 17:16:40 +01:00
|
|
|
void clearScreens(void);
|
2016-03-19 17:30:56 +01:00
|
|
|
void drawCharacter(char character, int pos_x, int pos_y, u32 color);
|
|
|
|
int drawString(const char *string, int pos_x, int pos_y, u32 color);
|