Hash :
048139fc
Author :
Date :
2001-08-07T01:00:37
#ifndef __FTGLBitmapFont__
#define __FTGLBitmapFont__
#include "FTFont.h"
class FTBitmapGlyph;
class FTGLBitmapFont : public FTFont
{
public:
// methods
FTGLBitmapFont();
~FTGLBitmapFont();
void render( const char* string);
// attributes
private:
// methods
bool MakeGlyphList();
// attributes
FTBitmapGlyph* tempGlyph;
};
#endif // __FTGLBitmapFont__