예제 #1
0
파일: formation.cpp 프로젝트: 2asoft/xray
RefTargetHandle FormationBhvr::Clone(RemapDir& remap) 
{
	FormationBhvr* newformation = new FormationBhvr();	
	newformation->ReplaceReference(PBLK,pblock->Clone(remap));

	return(newformation);
}
예제 #2
0
RefTargetHandle FormationBhvr::Clone(RemapDir& remap) 
{
	FormationBhvr* newformation = new FormationBhvr();	
	newformation->ReplaceReference(PBLK,remap.CloneRef(pblock));
	BaseClone(this, newformation, remap);

	return(newformation);
}