Edit

kc3-lang/ftgl/include/FTGLBitmapFont.h

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2001-08-05 21:34:40
    Hash : 678be1a1
    Message : Minor tidy ups

  • include/FTGLBitmapFont.h
  • #ifndef		__FTGLBitmapFont__
    #define		__FTGLBitmapFont__
    
    
    #include	"FTFont.h"
    
    class FTBitmapGlyph;
    
    class	FTGLBitmapFont : public FTFont
    {
    	public:
    		// methods
    		FTGLBitmapFont();
    		~FTGLBitmapFont();
    		
    		// attributes
    		
    	private:
    		// methods
    		bool MakeGlyphList();
    		
    		// attributes
    		FTBitmapGlyph* tempGlyph;
    		
    };
    #endif	//	__FTGLBitmapFont__