示例#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>();
 }