ShootPlane.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 SHOOTPLANE_H
  10. #define SHOOTPLACE_H
  11. using namespace std;
  12. class ShootPlane:public MemberStatus
  13. {
  14. protected:
  15. bool Shooting;
  16. int EndShoot;
  17. void SetEndShoot();
  18. virtual void Shoot()=0;
  19. public:
  20.    Bomb::BOMBSTYLE bombStyle;
  21.    static int i;
  22. ShootPlane::ShootPlane(Manager *mgr,int xv,int yv);
  23. void Update();
  24. void Update2();
  25. void beginShoot();
  26. void stopShoot();
  27. virtual ~ShootPlane();
  28. };
  29. #endif