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

    //Download by http://www.NewXing.com
// ObNode.cpp: implementation of the CObNode class.
//
//////////////////////////////////////////////////////////////////////

#include "ObNode.h"

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

CObNode::CObNode()
{
	BaseObj = NULL;
	Last = NULL;
	Next = NULL;
}

CObNode::CObNode(CBaseObj *It)
{
	BaseObj=It;
	Last = NULL;
	Next = NULL;
}

CObNode::~CObNode()
{
	BaseObj = NULL;
	Last = NULL;
	Next = NULL;
}