// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Localisation; namespace osu.Framework.Graphics.Cursor { /// /// Implementing this interface allows the implementing to display a tooltip if it is the child of a . The tooltip used is /// dependent on the implementation of the method of the containing this . /// public interface IHasTooltip : ITooltipContentProvider { /// /// Tooltip text that shows when hovering the drawable. /// LocalisableString TooltipText { get; } } }