Showmap.h
上传用户:semy2100
上传日期:2013-01-22
资源大小:3633k
文件大小:1k
源码类别:

射击游戏

开发平台:

Visual C++

  1. /********************************************************************
  2. *                        空运爆发                                    *
  3. *                       Version 2.0                                  *
  4. * 本游戏全部代码由:                                                 *
  5. *                   冲天实验室   梁锋 编写                           *
  6. *                    邮箱:lenwine@126.com                           *
  7. *                bbs: http://free2.e-168.cn/lenwind (正在开发中...)  *
  8. **********************************************************************/
  9. #ifndef SHOWMAP_H
  10. #define SHOWMAP_H
  11. class Showmap  
  12. {
  13. private:
  14. HBITMAP map,known,bgmap,storebg;
  15. int Bl,Bt,Bl2,Bt2;
  16. BOOL bHStyle;
  17. COLORREF cHColor;
  18. void InitImage(char *Img,int bi);
  19. void NewPaint();
  20. static int i;
  21. public:
  22. Showmap(char *Img,int bi,BOOL HStyle,COLORREF HColor);
  23. virtual ~Showmap();
  24. HBITMAP GetImage(){return map;};
  25. HDC bgdc;
  26. int GetImglong(){return Bl;};
  27. int GetImgtall(){return Bt;};
  28. void DImage(HDC didc,int Dx,int Dy,int Dl,int Dt,int bx,int by);
  29. };
  30. #endif