public bool IsHit(Dot d) { return(d.x == this.x && d.y == this.y); }
public Dot(Dot d) { x = d.x; y = d.y; sym = d.sym; }