EnermyPlace.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 ENERMYPLACE_H
- #define ENERMYPLACE_H
- using namespace std;
- class EnermyPlace
- {
- //定义那些坏蛋的列表
- list<Brock*>BrockList;
- list<Brock*>::iterator oNowBrock;;
- int BrockFind,BrockValue;
- int stress;
- Manager *mManager;
- public:
- void AddStress();
- EnermyPlace(Manager *mgr);//敌机控制室
- virtual ~EnermyPlace();
- Brock* GetOneBrock();
- Brock* GetTwoBrock();
- void NewBrock(int x,int y);//新建敌机
- void Update();
- void RefreshStress();//清屏
- };
- #endif