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 >
Wrap
C/C++ Source or Header
|
2004-07-12
|
550b
|
36 lines
#ifndef _DXFONT_H_
#define _DXFONT_H_
//--------------------------------------------------------------------
// Name: DXFONT Class
// Desc: ************
//--------------------------------------------------------------------
class DXFONT
{
private:
LPD3DXFONT Font ;
RECT FontPosition;
public:
DXFONT();
~DXFONT();
void Create(int Size,DWORD AtributeFlag,char *FontFace);
void Print(int x,int y,COLOR Color,char *Text);
void PrintCenter(int x,int y,COLOR Color,char *Text);
};
#endif //DXFONT