Font.h
资源名称:3DRPG.rar [点击查看]
上传用户:cjwanglu
上传日期:2013-07-10
资源大小:4744k
文件大小:0k
源码类别:
游戏
开发平台:
Visual C++
- #include <d3dx9.h>
- #define SafeDelete(object) if(object!=NULL){delete object;object=NULL;}
- #define SafeRelease(pObject) if(pObject!=NULL){pObject->Release();pObject=NULL;}
- class CFont
- {
- public:
- CFont(LPDIRECT3DDEVICE9 d3dd,LPSTR pFontFace);
- void DrawText(LPSTR pText,float x,float y);
- void DrawText_1(LPSTR pText,float x,float y);
- virtual ~CFont();
- private:
- LPDIRECT3DDEVICE9 m_pD3DDevice;
- LPD3DXFONT m_pFont;
- LPD3DXFONT m_pFont_1;
- };