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