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