1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game/Overlays/BeatmapSet/ExplicitContentBeatmapPill.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
548 B
C#
Raw Normal View History

2021-01-12 23:15:00 +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.
using osu.Framework.Graphics;
using osu.Framework.Localisation;
using osu.Game.Resources.Localisation.Web;
2021-01-12 23:15:00 +08:00
#nullable enable
2021-01-12 23:15:00 +08:00
namespace osu.Game.Overlays.BeatmapSet
{
public class ExplicitContentBeatmapPill : BeatmapBadgePill
2021-01-12 23:15:00 +08:00
{
public override LocalisableString BadgeText => BeatmapsetsStrings.NsfwBadgeLabel;
public override Colour4 BadgeColour => Colours.Orange2;
2021-01-12 23:15:00 +08:00
}
}