1
0
mirror of synced 2024-11-29 01:34:30 +01:00
OpenTaiko/TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerAC8_14.cs

12 lines
441 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曲リストードComparerAC8_14 : IComparer<C曲リストード>
{
public int Compare(C曲リストード n1, C曲リストード n2)
{
return CStrジャンルtoNum.ForAC8_14(n1.strジャンル).CompareTo(CStrジャンルtoNum.ForAC8_14(n2.strジャンル));
}
}
}