#ifndef _CFONT_H #define _CFONT_H #define FONT_WIDTH 32 #define FONT_HEIGHT 32 #define FONT_SPACING 20 void FontInit(int f_iWinWidth, int f_iWinHeight); void FontDelete(GLvoid); void glPrint(GLint x, GLint y, char *string); #endif