plane.cpp

来自「人最近写的一个飞行类的游戏,主要目的是为了锻炼一下自己,提高编程水平,由于本人C」· 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 + -
显示快捷键?