public static IComparer <GatherOrder> Build(Robot robot) { return(GatherOrderComparerBuilder.Start() .Health() .UsedMolecules() .Expertise(robot) .Build()); }
private GatherOrderComparerBuilder(GatherOrderComparerBuilder parent, IComparer <GatherOrder> comparer) { this.parent = parent; this.comparer = comparer; }