plane.cpp

来自「VC++游戏雷霆战机源代码 这款游戏类似雷电」· C++ 代码 · 共 20 行

CPP
20
字号
// Plane.cpp: implementation of the CPlane class.
//
//////////////////////////////////////////////////////////////////////

#include "Plane.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CPlane::CPlane(CDirectWnd *win,CObList *ObList):CBaseObj(win,ObList)
{
	life = 1;
}

CPlane::~CPlane()
{

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?