home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / temacd / planearcade / planearcade.exe / Tank3.bmp / dxfont.h < prev    next >
C/C++ Source or Header  |  2004-07-12  |  550b  |  36 lines

  1.  
  2.  
  3. #ifndef _DXFONT_H_
  4. #define _DXFONT_H_
  5.  
  6.  
  7. //--------------------------------------------------------------------
  8. // Name: DXFONT Class
  9. // Desc: ************
  10. //--------------------------------------------------------------------
  11. class DXFONT
  12. {
  13. private:
  14.  
  15.     LPD3DXFONT Font ;
  16.     RECT FontPosition;
  17.  
  18. public:
  19.  
  20.     DXFONT();
  21.     ~DXFONT();
  22.  
  23.     void Create(int Size,DWORD AtributeFlag,char *FontFace);
  24.  
  25.     void Print(int x,int y,COLOR Color,char *Text);
  26.     void PrintCenter(int x,int y,COLOR Color,char *Text);
  27.  
  28.  
  29. };
  30.  
  31.  
  32.  
  33.  
  34.  
  35. #endif //DXFONT
  36.