Travis Geiselbrecht | 801509f | 2010-05-21 23:02:04 -0700 | [diff] [blame] | 1 | #ifndef __LIB_TEXT_H |
2 | #define __LIB_TEXT_H | ||||
3 | |||||
4 | #include <lib/font.h> | ||||
5 | |||||
6 | /* super cheezy mechanism to stick lines of text up on top of whatever is being drawn */ | ||||
7 | /* XXX replace with something more generic later */ | ||||
8 | void text_draw(int x, int y, const char *string); | ||||
9 | |||||
10 | /* super dumb, someone has to call this to refresh everything */ | ||||
11 | void text_update(void); | ||||
12 | |||||
13 | #endif | ||||
14 |