EnermyPlace.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 ENERMYPLACE_H
  10. #define ENERMYPLACE_H
  11. using namespace std;
  12. class EnermyPlace  
  13. {
  14. //定义那些坏蛋的列表
  15. list<Brock*>BrockList;
  16. list<Brock*>::iterator oNowBrock;;
  17. int BrockFind,BrockValue;
  18. int stress;
  19. Manager *mManager;
  20. public:
  21. void AddStress();
  22. EnermyPlace(Manager *mgr);//敌机控制室
  23. virtual ~EnermyPlace();
  24. Brock* GetOneBrock();
  25. Brock* GetTwoBrock();
  26. void NewBrock(int x,int y);//新建敌机
  27. void Update();
  28. void RefreshStress();//清屏
  29. };
  30. #endif