mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 12:02:55 +08:00
vs17 -> vs15
This commit is contained in:
parent
e835b19d4a
commit
679829daae
@ -9,8 +9,6 @@ using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Primitives;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Framework.Input;
|
||||
using osu.Framework.Threading;
|
||||
using osu.Game.Graphics.Sprites;
|
||||
|
||||
namespace osu.Game.Graphics.UserInterface
|
||||
@ -22,8 +20,14 @@ namespace osu.Game.Graphics.UserInterface
|
||||
private readonly OsuSpriteText text;
|
||||
|
||||
public string TooltipText {
|
||||
get => text.Text;
|
||||
set => text.Text = value;
|
||||
get
|
||||
{
|
||||
return text.Text;
|
||||
}
|
||||
set
|
||||
{
|
||||
text.Text = value;
|
||||
}
|
||||
}
|
||||
|
||||
public Vector2 TooltipOffset = new Vector2();
|
||||
|
Loading…
Reference in New Issue
Block a user