📄 cexplored.h
字号:
//----------------------------------------------------------------------------
// 文件名: 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -