// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE namespace osu.Game.Graphics.Cursor { public interface IHasTooltip { /// /// Tooltip that shows when hovering the object /// string Tooltip { get; } } /// /// Tooltip with custom appear time /// public interface IHasDelayedTooltip : IHasTooltip { /// /// Time until the tooltip appears (in milliseconds) /// int Delay { get; } } /// /// Tooltip which can show after hovering over the object /// public interface IHasOverhangingTooltip : IHasTooltip { /// /// Should the tooltip still show? /// bool Overhanging { get; } } }