nuclear@22: #ifndef TEXT_H_ nuclear@22: #define TEXT_H_ nuclear@22: nuclear@22: #ifdef __cplusplus nuclear@22: extern "C" { nuclear@22: #endif nuclear@22: nuclear@22: void text_color(float r, float g, float b, float a); nuclear@22: void text_position(int x, int y); nuclear@22: void text_print(const char *s); nuclear@22: void text_printf(const char *fmt, ...); nuclear@22: nuclear@22: #ifdef __cplusplus nuclear@22: } nuclear@22: #endif nuclear@22: nuclear@22: #endif /* TEXT_H_ */