1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 03:17:18 +08:00

22 lines
649 B
C#
Raw Normal View History

2023-06-23 01:37:25 +09:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2021-06-10 09:38:07 +07:00
// See the LICENCE file in the repository root for full licence text.
using Markdig.Syntax.Inlines;
using osu.Framework.Graphics.Containers.Markdown;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Localisation;
2021-06-10 09:38:07 +07:00
namespace osu.Game.Graphics.Containers.Markdown
{
2022-11-24 14:32:20 +09:00
public partial class OsuMarkdownImage : MarkdownImage, IHasTooltip
2021-06-10 09:38:07 +07:00
{
public LocalisableString TooltipText { get; }
2021-06-10 09:38:07 +07:00
public OsuMarkdownImage(LinkInline linkInline)
: base(linkInline.Url)
{
TooltipText = linkInline.Title;
}
}
}