mirror of
https://github.com/ppy/osu
synced 2024-12-11 01:19:26 +00:00
15 lines
405 B
C#
15 lines
405 B
C#
|
using osu.Framework.Graphics.Cursor;
|
||
|
using osu.Framework.Graphics.Sprites;
|
||
|
using osu.Framework.Localisation;
|
||
|
|
||
|
namespace osu.Game.Graphics.Sprites
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// A <see cref="SpriteIcon"/> with a publicly settable tooltip text.
|
||
|
/// </summary>
|
||
|
public partial class SpriteIconWithTooltip : SpriteIcon, IHasTooltip
|
||
|
{
|
||
|
public LocalisableString TooltipText { get; set; }
|
||
|
}
|
||
|
}
|