mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
Minor enum adjustments for consistency
This commit is contained in:
@ -76,35 +76,35 @@ namespace osu.Game.Online.API.Requests
|
|||||||
|
|
||||||
public enum BeatmapSearchGenre
|
public enum BeatmapSearchGenre
|
||||||
{
|
{
|
||||||
Any,
|
Any = 0,
|
||||||
Unspecified,
|
Unspecified = 1,
|
||||||
|
|
||||||
[Description("Video Game")]
|
[Description("Video Game")]
|
||||||
VideoGame,
|
VideoGame = 2,
|
||||||
Anime,
|
Anime = 3,
|
||||||
Rock,
|
Rock = 4,
|
||||||
Pop,
|
Pop = 5,
|
||||||
Other,
|
Other = 6,
|
||||||
Novelty,
|
Novelty = 7,
|
||||||
|
|
||||||
[Description("Hip Hop")]
|
[Description("Hip Hop")]
|
||||||
HipHop = 9,
|
HipHop = 9,
|
||||||
Electronic
|
Electronic = 10
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum BeatmapSearchLanguage
|
public enum BeatmapSearchLanguage
|
||||||
{
|
{
|
||||||
Any,
|
Any,
|
||||||
English = 2,
|
Other,
|
||||||
Chinese = 4,
|
English,
|
||||||
French = 7,
|
Japanese,
|
||||||
|
Chinese,
|
||||||
|
Instrumental,
|
||||||
|
Korean,
|
||||||
|
French,
|
||||||
German,
|
German,
|
||||||
Italian = 11,
|
Swedish,
|
||||||
Japanese = 3,
|
Spanish,
|
||||||
Korean = 6,
|
Italian
|
||||||
Spanish = 10,
|
|
||||||
Swedish = 9,
|
|
||||||
Instrumental = 5,
|
|
||||||
Other = 1
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user