📄 bomb.h
字号:
// Bomb.h: interface for the CBomb class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BOMB_H__34169070_8114_4E6F_A2EF_3F85BDCC5124__INCLUDED_)
#define AFX_BOMB_H__34169070_8114_4E6F_A2EF_3F85BDCC5124__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "BaseObj.h"
#include "Explode.h"
class CBomb : public CBaseObj
{
public:
CBomb(CDirectWnd *win,CObList *ObList);
virtual ~CBomb();
void LoadPic();
void Action();
public:
LPDIRECTDRAWSURFACE BombPic;
static int num;
};
#endif // !defined(AFX_BOMB_H__34169070_8114_4E6F_A2EF_3F85BDCC5124__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -