forked from mirror/DotRecast
18 lines
417 B
C#
18 lines
417 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DotRecast.Recast.Geom
|
|
{
|
|
public class BoundsItemYComparer : IComparer<BoundsItem>
|
|
{
|
|
public static readonly BoundsItemYComparer Shared = new BoundsItemYComparer();
|
|
|
|
private BoundsItemYComparer()
|
|
{
|
|
}
|
|
|
|
public int Compare(BoundsItem a, BoundsItem b)
|
|
{
|
|
return a.bmin.y.CompareTo(b.bmin.y);
|
|
}
|
|
}
|
|
} |