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