1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:47:26 +08:00

Minor enum adjustments for consistency

This commit is contained in:
Andrei Zavatski 2020-02-21 01:05:20 +03:00
parent eeae0a5774
commit d50cca6264

View File

@ -76,35 +76,35 @@ namespace osu.Game.Online.API.Requests
public enum BeatmapSearchGenre
{
Any,
Unspecified,
Any = 0,
Unspecified = 1,
[Description("Video Game")]
VideoGame,
Anime,
Rock,
Pop,
Other,
Novelty,
VideoGame = 2,
Anime = 3,
Rock = 4,
Pop = 5,
Other = 6,
Novelty = 7,
[Description("Hip Hop")]
HipHop = 9,
Electronic
Electronic = 10
}
public enum BeatmapSearchLanguage
{
Any,
English = 2,
Chinese = 4,
French = 7,
Other,
English,
Japanese,
Chinese,
Instrumental,
Korean,
French,
German,
Italian = 11,
Japanese = 3,
Korean = 6,
Spanish = 10,
Swedish = 9,
Instrumental = 5,
Other = 1
Swedish,
Spanish,
Italian
}
}