cexplored.h
来自「坦克大战小游戏 控制说明: 玩家1相关控制: A/W/S/D:控」· C头文件 代码 · 共 39 行
H
39 行
//----------------------------------------------------------------------------
// 文件名: CExplored.h
//
// 描述:爆破对象定义
//
// 作者:朱波 创建日期:2007-03-22
//----------------------------------------------------------------------------
#ifndef CEXPLORED_H
#define CEXPLORED_H
class CExplored
{
public:
int Create( POINT pos, int width, int height, int pic_count,
LPDIRECTDRAWSURFACE7 surface[] );
int DoExplored( void );
int Draw( void );
~CExplored( void );
CExplored( void );
protected:
POINT m_position;
int m_pic_count;
int m_cur_pic_index;
POINT m_draw_start;
int m_draw_width;
int m_draw_height;
LPDIRECTDRAWSURFACE7 *m_draw_lppSurface;
int m_cur_time;
int m_pre_time_change;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?