Implement RankingsSortTabControl component

This commit is contained in:
Andrei Zavatski
2020-07-13 01:22:05 +03:00
parent 57cfdb82ce
commit 6eec2f9429
4 changed files with 57 additions and 5 deletions

View File

@ -0,0 +1,19 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Game.Overlays.Rankings
{
public class RankingsSortTabControl : OverlaySortTabControl<RankingsSortCriteria>
{
public RankingsSortTabControl()
{
Title = "Show";
}
}
public enum RankingsSortCriteria
{
All,
Friends
}
}