2021-01-12 16:09:55 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-06-16 14:58:07 +08:00
|
|
|
using osu.Framework.Localisation;
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
|
2021-01-12 16:09:55 +08:00
|
|
|
namespace osu.Game.Overlays.BeatmapListing
|
|
|
|
{
|
|
|
|
public enum SearchExplicit
|
|
|
|
{
|
2021-07-31 06:38:54 +08:00
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.NsfwExclude))]
|
2021-01-12 16:09:55 +08:00
|
|
|
Hide,
|
2021-06-16 14:58:07 +08:00
|
|
|
|
2021-07-31 06:38:54 +08:00
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.NsfwInclude))]
|
|
|
|
Show
|
2021-06-16 14:58:07 +08:00
|
|
|
}
|
2021-01-12 16:09:55 +08:00
|
|
|
}
|