1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

Move todo comment to subclasses

This commit is contained in:
Salman Ahmed 2022-05-14 21:02:56 +03:00
parent 441957e18e
commit 1878578196
3 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,6 @@ namespace osu.Game.Overlays.BeatmapSet
private OsuSpriteText badgeLabel = null!;
// todo: add linking support, to allow redirecting featured artist badge to corresponding track and spotlight badge to wiki page.
protected BeatmapBadge()
{
AutoSizeAxes = Axes.Both;

View File

@ -16,6 +16,7 @@ namespace osu.Game.Overlays.BeatmapSet
{
BadgeText = BeatmapsetsStrings.FeaturedArtistBadgeLabel;
BadgeColour = colours.Blue1;
// todo: add linking support to allow redirecting featured artist badge to corresponding track.
}
}
}

View File

@ -16,6 +16,7 @@ namespace osu.Game.Overlays.BeatmapSet
{
BadgeText = BeatmapsetsStrings.SpotlightBadgeLabel;
BadgeColour = colours.Pink1;
// todo: add linking support to allow redirecting spotlight badge to https://osu.ppy.sh/wiki/en/Beatmap_Spotlights.
}
}
}