コード例 #1
0
 public Dot(Dot dot)
 {
     _goal   = dot._goal;
     _brain  = new Brain(dot._brain.CopyDirections());
     _isBest = true;
 }
コード例 #2
0
 public Dot(Point goal, Point[] directions)
 {
     _goal  = goal;
     _brain = new Brain(directions);
 }