Change signature to new event handler

This commit is contained in:
ekrctb
2018-10-02 12:02:47 +09:00
parent 0d70306794
commit 99fc04c8af
110 changed files with 667 additions and 709 deletions

View File

@ -12,7 +12,7 @@ using osu.Game.Rulesets.UI;
using OpenTK;
using osu.Game.Graphics.Containers;
using System.Linq;
using osu.Framework.Input.States;
using osu.Framework.Input.Events;
namespace osu.Game.Screens.Play.HUD
{
@ -93,16 +93,16 @@ namespace osu.Game.Screens.Play.HUD
private void contract() => iconsContainer.TransformSpacingTo(new Vector2(-25, 0), 500, Easing.OutQuint);
protected override bool OnHover(InputState state)
protected override bool OnHover(HoverEvent e)
{
expand();
return base.OnHover(state);
return base.OnHover(e);
}
protected override void OnHoverLost(InputState state)
protected override void OnHoverLost(HoverLostEvent e)
{
contract();
base.OnHoverLost(state);
base.OnHoverLost(e);
}
}
}