📄 bomb.h
字号:
// bomb.h: interface for the bomb class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BOMB_H__5847ABE9_D154_488C_BB4E_56EF6B2B480C__INCLUDED_)
#define AFX_BOMB_H__5847ABE9_D154_488C_BB4E_56EF6B2B480C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class bomb
{
public:
void setlived(int s);
bool islived();
int status;
void move(screen *pscreen);
bomb(int cx,int cy);
void paint(CDC *pdc,screen* pscreen);
int x1,y1;
bomb();
virtual ~bomb();
};
#endif // !defined(AFX_BOMB_H__5847ABE9_D154_488C_BB4E_56EF6B2B480C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -