00001 #ifndef __SDLFONT_H 00002 #define __SDLFONT_H 00003 00004 void SDLFontDrawChar(char t, SDL_Surface* img, int x1, int y1); 00005 void SDLFontDraw(const char* txt, const void* font, float x, float y); 00006 float SDLFontSize(const char* txt, const void* font); 00007 #endif