Ejemplo n.º 1
0
FOG *Copy_Fog(const FOG *Old)
{
	FOG *New;

	New = Create_Fog();

	*New = *Old;

	New->Turb = reinterpret_cast<TURB *>(Copy_Warps((reinterpret_cast<WARP *>(Old->Turb))));

	return (New);
}
Ejemplo n.º 2
0
FOG *Copy_Fog(const FOG *Old)
{
	FOG *New;

	New = Create_Fog();

	*New = *Old;

	New->Turb = (TURB *)Copy_Warps(((WARP *)Old->Turb));

	return (New);
}