Merge pull request #13485 from peppy/unused-enum

Remove unused `RankingType` enum
This commit is contained in:
Dan Balasescu
2021-06-14 12:04:27 +09:00
committed by GitHub

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
}
}