Esempio n. 1
0
RefTargetHandle FormationBhvr::Clone(RemapDir& remap) 
{
	FormationBhvr* newformation = new FormationBhvr();	
	newformation->ReplaceReference(PBLK,pblock->Clone(remap));

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

	return(newformation);
}