osu/osu.Game/Overlays/BeatmapListing/SearchLanguage.cs

57 lines
846 B
C#
Raw Normal View History

2020-04-21 06:37:50 +00:00
// 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 osu.Game.Utils;
namespace osu.Game.Overlays.BeatmapListing
{
[HasOrderedElements]
public enum SearchLanguage
{
[Order(0)]
Any,
[Order(14)]
Unspecified,
2020-04-21 06:37:50 +00:00
[Order(1)]
English,
[Order(6)]
Japanese,
[Order(2)]
Chinese,
2020-06-13 06:48:30 +00:00
[Order(12)]
2020-04-21 06:37:50 +00:00
Instrumental,
[Order(7)]
Korean,
[Order(3)]
French,
[Order(4)]
German,
[Order(9)]
Swedish,
[Order(8)]
Spanish,
[Order(5)]
2020-06-13 06:48:30 +00:00
Italian,
[Order(10)]
Russian,
[Order(11)]
2020-06-13 07:20:34 +00:00
Polish,
[Order(13)]
Other
2020-04-21 06:37:50 +00:00
}
}