Remove unused `RankingType` enum

We have `BeatmapLeaderboardScope` instead.
This commit is contained in:
Dean Herbert 2021-06-14 11:27:45 +09:00
parent c644e11e5a
commit 17347401cf
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
// 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.
using System.ComponentModel;
namespace osu.Game.Configuration
{
public enum RankingType
{
Local,
[Description("Global")]
Top,
[Description("Selected Mods")]
SelectedMod,
Friends,
Country
}
}