using System.Collections; using System.Collections.Generic; using Luski.net.Structures.Public; namespace Luski.net.Classes; public class RoleComparer : IComparer { public int Compare(Role x, Role y) { return y.Index - x.Index; } }