예제 #1
0
 public NodeData(RobotMove move, Dictionary <int, Cell> locs)
 {
     this.Move = move;
     this.CurrentRobotLocations = locs;
 }
예제 #2
0
 public NodeData(RobotMove move)
 {
     this.Move = move;
     this.CurrentRobotLocations = new Dictionary <int, Cell>();
 }