Example #1
0
//**関数***************************************************************************
//	概要	:	生成
//*********************************************************************************
CObjBase* CObjBase::Create(int nSceneID ,int nPriority)
{
	CObjBase*	pObj = new CObjBase();

	if(pObj->Init(nSceneID , nPriority))
		return pObj;

	SAFE_DELETE(pObj);
	return NULL;
}