forked from mirror/DotRecast
12 lines
248 B
C#
12 lines
248 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace DotRecast.Detour
|
|||
|
{
|
|||
|
public class CompareItemY : IComparer<BVItem>
|
|||
|
{
|
|||
|
public int Compare(BVItem a, BVItem b)
|
|||
|
{
|
|||
|
return a.bmin[1].CompareTo(b.bmin[1]);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|