1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 04:13:11 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/IHasTooltip.cs
2017-04-02 18:19:59 +02:00

11 lines
287 B
C#

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Graphics.UserInterface
{
public interface IHasTooltip
{
string Tooltip { get; }
}
}