Font.h
上传用户:cjwanglu
上传日期:2013-07-10
资源大小:4744k
文件大小:0k
源码类别:

游戏

开发平台:

Visual C++

  1. #include <d3dx9.h>
  2. #define SafeDelete(object) if(object!=NULL){delete object;object=NULL;}
  3. #define SafeRelease(pObject) if(pObject!=NULL){pObject->Release();pObject=NULL;}
  4. class CFont
  5. {
  6. public:
  7. CFont(LPDIRECT3DDEVICE9 d3dd,LPSTR pFontFace);
  8. void DrawText(LPSTR pText,float x,float y);
  9. void DrawText_1(LPSTR pText,float x,float y);
  10. virtual ~CFont();
  11. private:
  12. LPDIRECT3DDEVICE9 m_pD3DDevice;
  13. LPD3DXFONT m_pFont;
  14. LPD3DXFONT m_pFont_1;
  15. };