A game framework written with osu! in mind.

Make `IHasTooltip` interface use a `LocalisedString` instead of a regular string.

Lucas A a07fa780 b826d0b2

+3 -1
+3 -1
osu.Framework/Graphics/Cursor/IHasTooltip.cs
··· 1 1 // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2 2 // See the LICENCE file in the repository root for full licence text. 3 3 4 + using osu.Framework.Localisation; 5 + 4 6 namespace osu.Framework.Graphics.Cursor 5 7 { 6 8 /// <summary> ··· 12 14 /// <summary> 13 15 /// Tooltip text that shows when hovering the drawable. 14 16 /// </summary> 15 - string TooltipText { get; } 17 + LocalisableString TooltipText { get; } 16 18 } 17 19 }