ref: d919168adb92b103e1196a753b5e5f52b3026c83
dir: /src/font.h/
// font.h
#ifndef __FONT__
#define __FONT__
typedef struct
{
SDL_Surface *surface;
int width[256];
int across[256];
}
SkittlesFont, *SkittlesFontPtr;
void InitFont( void );
SkittlesFontPtr GetFont( int pictID );
int GetTextWidth( SkittlesFontPtr font, const char *text );
#endif