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

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

21 lines
705 B
C#
Raw Normal View History

2022-05-15 00:46: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.
using osu.Framework.Allocation;
using osu.Game.Graphics;
2022-05-15 00:46:50 +08:00
using osu.Game.Resources.Localisation.Web;
namespace osu.Game.Overlays.BeatmapSet
{
2022-05-15 01:52:38 +08:00
public class SpotlightBeatmapBadge : BeatmapBadge
2022-05-15 00:46:50 +08:00
{
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
BadgeText = BeatmapsetsStrings.SpotlightBadgeLabel;
BadgeColour = colours.SpotlightColour;
2022-05-15 02:02:56 +08:00
// todo: add linking support to allow redirecting spotlight badge to https://osu.ppy.sh/wiki/en/Beatmap_Spotlights.
}
2022-05-15 00:46:50 +08:00
}
}