// 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; } } /// /// Interface of with custom appear time /// public interface IHasDelayedTooltip : IHasTooltip { /// /// Time until the tooltip appears (in milliseconds) /// int Delay { get; } } }