Wire up enum-backed dropdowns

This commit is contained in:
Drew DeVault
2016-12-01 17:28:20 -05:00
parent 0378de8346
commit 4757a1c433
14 changed files with 131 additions and 22 deletions

View File

@ -0,0 +1,14 @@
using System;
namespace osu.Game.Configuration
{
public enum RankingType
{
Local,
[DisplayName("Global")]
Top,
[DisplayName("Selected Mods")]
SelectedMod,
Friends,
Country
}
}