mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-16 21:17:39 +03:00
11 lines
310 B
C#
11 lines
310 B
C#
namespace Content.Server.AI.Pathfinding.Pathfinders
|
|
{
|
|
public sealed class PathfindingComparer : IComparer<ValueTuple<float, PathfindingNode>>
|
|
{
|
|
public int Compare((float, PathfindingNode) x, (float, PathfindingNode) y)
|
|
{
|
|
return y.Item1.CompareTo(x.Item1);
|
|
}
|
|
}
|
|
}
|