public override bool Intersect(Circle circle) { Console.WriteLine("Rectangle intersecting Circle"); return true; //implement rectangle to circle collision detection }
public override bool Intersect(Circle circle) { Console.WriteLine("Rectangle intersecting Circle"); return(true); //implement rectangle to circle collision detection }
public abstract bool Intersect(Circle circle);