3dphotoshoot

annotate src/text.h @ 27:3d082c566b53

fixed all the bugs, pc version works
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 18 Jun 2015 04:32:25 +0300
parents
children
rev   line source
nuclear@22 1 #ifndef TEXT_H_
nuclear@22 2 #define TEXT_H_
nuclear@22 3
nuclear@22 4 #ifdef __cplusplus
nuclear@22 5 extern "C" {
nuclear@22 6 #endif
nuclear@22 7
nuclear@22 8 void text_color(float r, float g, float b, float a);
nuclear@22 9 void text_position(int x, int y);
nuclear@22 10 void text_print(const char *s);
nuclear@22 11 void text_printf(const char *fmt, ...);
nuclear@22 12
nuclear@22 13 #ifdef __cplusplus
nuclear@22 14 }
nuclear@22 15 #endif
nuclear@22 16
nuclear@22 17 #endif /* TEXT_H_ */