Travis Geiselbrecht | 99b2d1d | 2010-05-21 22:57:18 -0700 | [diff] [blame] | 1 | #ifndef __LIB_FONT_H |
2 | #define __LIB_FONT_H | ||||
3 | |||||
4 | #include <lib/gfx.h> | ||||
5 | |||||
6 | #define FONT_X 6 | ||||
7 | #define FONT_Y 12 | ||||
8 | |||||
9 | void font_draw_char(gfx_surface *surface, unsigned char c, int x, int y, uint32_t color); | ||||
10 | |||||
11 | #endif | ||||
12 |