* Fix namespaces and optimize imports * Cleanup fixes * Merge conflict fixes * Merge conflict fixes * Merge conflict fixes
14 lines
378 B
C#
14 lines
378 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Content.Server.GameObjects.EntitySystems.AI.Pathfinding.Pathfinders
|
|
{
|
|
public class PathfindingComparer : IComparer<ValueTuple<float, PathfindingNode>>
|
|
{
|
|
public int Compare((float, PathfindingNode) x, (float, PathfindingNode) y)
|
|
{
|
|
return y.Item1.CompareTo(x.Item1);
|
|
}
|
|
}
|
|
}
|