using System; using System.Collections.Generic; namespace Content.Server.GameObjects.EntitySystems.AI.Pathfinding.Pathfinders { public class PathfindingComparer : IComparer> { public int Compare((float, PathfindingNode) x, (float, PathfindingNode) y) { return y.Item1.CompareTo(x.Item1); } } }