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

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

20 lines
578 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.Allocation;
using osu.Game.Graphics;
using osu.Game.Resources.Localisation.Web;
2021-01-12 23:15:00 +08:00
namespace osu.Game.Overlays.BeatmapSet
{
2022-05-15 01:52:38 +08:00
public partial class ExplicitContentBeatmapBadge : BeatmapBadge
2021-01-12 23:15:00 +08:00
{
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
BadgeText = BeatmapsetsStrings.NsfwBadgeLabel;
BadgeColour = colours.Orange2;
}
2021-01-12 23:15:00 +08:00
}
}