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