11 lines
232 B
C
11 lines
232 B
C
#ifndef UI_BASE_H_
|
|
#define UI_BASE_H_
|
|
|
|
/**
|
|
* Prints the string text starting at position *x, *y. x and y are updated to
|
|
* the position after the last character
|
|
*/
|
|
void draw_text(char *text, int *x, int *y);
|
|
|
|
#endif // UI_BASE_H_
|