www.gusucode.com > VC++游戏雷霆战机源代码-源码程序 > VC++游戏雷霆战机源代码-源码程序\code\Plane.cpp

    //Download by http://www.NewXing.com
// 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()
{

}