mirror of
https://github.com/ppy/osu.git
synced 2025-01-29 01:22:54 +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.Containers;
|
||||||
using osu.Framework.Graphics.Primitives;
|
using osu.Framework.Graphics.Primitives;
|
||||||
using osu.Framework.Graphics.Sprites;
|
using osu.Framework.Graphics.Sprites;
|
||||||
using osu.Framework.Input;
|
|
||||||
using osu.Framework.Threading;
|
|
||||||
using osu.Game.Graphics.Sprites;
|
using osu.Game.Graphics.Sprites;
|
||||||
|
|
||||||
namespace osu.Game.Graphics.UserInterface
|
namespace osu.Game.Graphics.UserInterface
|
||||||
@ -22,8 +20,14 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
private readonly OsuSpriteText text;
|
private readonly OsuSpriteText text;
|
||||||
|
|
||||||
public string TooltipText {
|
public string TooltipText {
|
||||||
get => text.Text;
|
get
|
||||||
set => text.Text = value;
|
{
|
||||||
|
return text.Text;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
text.Text = value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public Vector2 TooltipOffset = new Vector2();
|
public Vector2 TooltipOffset = new Vector2();
|
||||||
|
Loading…
Reference in New Issue
Block a user