Appearance.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 _APPEARANCE_H
  10. #define _APPEARANCE_H
  11. #include<windows.h>
  12. #include<io.h>
  13. #include<stdio.h>
  14. #include<glgl.h>
  15. #include<glglu.h>
  16. #include<glglaux.h>
  17. #pragma comment(lib,"opengl32.lib")
  18. #pragma comment(lib,"glu32.lib")
  19. #pragma comment(lib,"glaux.lib")
  20. class Appearance{
  21. private: 
  22.     HBITMAP mp,omp;
  23. void InitMap(char *MP);
  24. void Begindraw();
  25. public:
  26. Appearance(char *MP);
  27. int mapl,mapt;
  28. virtual ~Appearance();
  29. HBITMAP GetImage(){return mp;};
  30. // int GetMaplong(){return ml;};
  31. // int GetMaptall(){return mt;};
  32. void pMap(HDC lpDC,int px,int py,int pl,int pt);
  33. };
  34. #endif /** PREDEFINE END **/