mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 09:27:51 +08:00
33 lines
923 B
C#
33 lines
923 B
C#
|
// 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 Markdig.Syntax.Inlines;
|
||
|
using osu.Framework.Allocation;
|
||
|
using osu.Framework.Graphics.Containers.Markdown;
|
||
|
using osu.Framework.Graphics.Sprites;
|
||
|
using osu.Game.Overlays;
|
||
|
|
||
|
namespace osu.Game.Graphics.Containers.Markdown
|
||
|
{
|
||
|
public class OsuMarkdownLinkText : MarkdownLinkText
|
||
|
{
|
||
|
private SpriteText spriteText;
|
||
|
|
||
|
public OsuMarkdownLinkText(string text, LinkInline linkInline)
|
||
|
: base(text, linkInline)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[BackgroundDependencyLoader]
|
||
|
private void load(OverlayColourProvider colourProvider)
|
||
|
{
|
||
|
spriteText.Colour = colourProvider.Light2;
|
||
|
}
|
||
|
|
||
|
public override SpriteText CreateSpriteText()
|
||
|
{
|
||
|
return spriteText = base.CreateSpriteText();
|
||
|
}
|
||
|
}
|
||
|
}
|