ObjectHit.h
资源名称:LwGame2.0.rar [点击查看]
上传用户:semy2100
上传日期:2013-01-22
资源大小:3633k
文件大小:1k
源码类别:
射击游戏
开发平台:
Visual C++
- /********************************************************************
- * 空运爆发 *
- * Version 2.0 *
- * 本游戏全部代码由: *
- * 冲天实验室 梁锋 编写 *
- * 邮箱:lenwine@126.com *
- * bbs: http://free2.e-168.cn/lenwind (正在开发中...) *
- **********************************************************************/
- #ifndef OBJECT_HIT
- #define OBJECT_HIT
- class ObjectHit
- {
- OperatorPlace *oPeratorPlace,*oPeratorPlace2;
- EnermyPlace *oEnermyPlace;
- BombSet *oPeratorbomb,*oEnermybomb;
- /************************************************************/
- char muspath[50]; //音乐文件路径
- char bplay[50]; //打开midi命令字符串
- char bclose[50]; //关闭midi命令字符串
- /************************************************************/
- void ObjectHit::WatchHit(Brock *lpBrockPlace,Bomb *bBomb);//
- void ObjectHit::WatchHit(OperatorPlace *lpOperatorPlace,Bomb *bBomb);
- void ObjectHit::WatchHit(OperatorPlace *oPeratorPlace,Brock *bBrock);
- public:
- ObjectHit(Manager *mgr);
- static int i;
- ~ObjectHit();
- void Update();
- };
- #endif