···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.
3004namespace 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.
34+using osu.Framework.Localisation;
5+6namespace 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}