public Dot(Dot dot) { _goal = dot._goal; _brain = new Brain(dot._brain.CopyDirections()); _isBest = true; }
public Dot(Point goal, Point[] directions) { _goal = goal; _brain = new Brain(directions); }