public NodeData(RobotMove move, Dictionary <int, Cell> locs) { this.Move = move; this.CurrentRobotLocations = locs; }
public NodeData(RobotMove move) { this.Move = move; this.CurrentRobotLocations = new Dictionary <int, Cell>(); }