コード例 #1
0
ファイル: Event.cs プロジェクト: notperry1234567890/osu
        public int CompareTo(Event other)
        {
            int compare = StartTime.CompareTo(other.StartTime);

            if (compare != 0)
            {
                return(compare);
            }

            return(Type.CompareTo(other.Type));
        }
コード例 #2
0
ファイル: EventBase.cs プロジェクト: wwwMADwww/osuElements
 public int CompareTo(EventBase other)
 {
     return(Type.CompareTo(other.Type));
 }