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