ObjectHit.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 OBJECT_HIT
  10. #define OBJECT_HIT
  11. class ObjectHit  
  12. {
  13. OperatorPlace *oPeratorPlace,*oPeratorPlace2;
  14. EnermyPlace   *oEnermyPlace;
  15. BombSet       *oPeratorbomb,*oEnermybomb;
  16.    
  17. /************************************************************/
  18. char muspath[50]; //音乐文件路径
  19. char bplay[50]; //打开midi命令字符串
  20. char bclose[50]; //关闭midi命令字符串
  21. /************************************************************/
  22. void ObjectHit::WatchHit(Brock *lpBrockPlace,Bomb *bBomb);//
  23. void ObjectHit::WatchHit(OperatorPlace *lpOperatorPlace,Bomb *bBomb);
  24. void ObjectHit::WatchHit(OperatorPlace *oPeratorPlace,Brock *bBrock);
  25. public:
  26. ObjectHit(Manager *mgr);
  27. static int i;
  28. ~ObjectHit();
  29. void Update();
  30. };
  31. #endif