mirror of
https://github.com/osukey/osukey.git
synced 2025-05-28 08:57:25 +09:00
14 lines
249 B
C#
14 lines
249 B
C#
using System;
|
|
namespace osu.Game.Configuration
|
|
{
|
|
public enum RankingType
|
|
{
|
|
Local,
|
|
[DisplayName("Global")]
|
|
Top,
|
|
[DisplayName("Selected Mods")]
|
|
SelectedMod,
|
|
Friends,
|
|
Country
|
|
}
|
|
} |