1
0
mirror of synced 2024-12-14 08:32:58 +01:00
OpenTaiko/TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerAC15.cs

12 lines
435 B
C#
Raw Normal View History

2021-09-21 00:16:38 +02:00
using System.Collections.Generic;
namespace TJAPlayer3.C曲リストードComparers
{
internal sealed class C曲リストードComparerAC15 : IComparer<C曲リストード>
{
public int Compare(C曲リストード n1, C曲リストード n2)
{
return CStrジャンルtoNum.ForAC15(n1.strジャンル).CompareTo(CStrジャンルtoNum.ForAC15(n2.strジャンル));
}
}
}