using System.Collections.Generic; namespace DotRecast.Recast.Geom { public class BoundsItemYComparer : IComparer { public static readonly BoundsItemYComparer Shared = new BoundsItemYComparer(); private BoundsItemYComparer() { } public int Compare(BoundsItem a, BoundsItem b) { return a.bmin.y.CompareTo(b.bmin.y); } } }