1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 12:07:23 +08:00

vs17 -> vs15

This commit is contained in:
Jorolf 2017-04-02 18:25:44 +02:00
parent e835b19d4a
commit 679829daae

View File

@ -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();