2017-04-14 05:00:49 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-04-19 19:47:00 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
|
2017-04-20 16:33:07 +08:00
|
|
|
|
namespace osu.Game.Graphics
|
2017-04-14 05:00:49 +08:00
|
|
|
|
{
|
2017-04-19 19:47:00 +08:00
|
|
|
|
public interface IHasTooltip : IDrawable
|
2017-04-14 05:00:49 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-04-19 19:47:00 +08:00
|
|
|
|
/// Tooltip that shows when hovering the drawable
|
2017-04-14 05:00:49 +08:00
|
|
|
|
/// </summary>
|
2017-04-19 19:47:00 +08:00
|
|
|
|
string TooltipText { get; }
|
2017-04-14 05:00:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|