Apply input method signature refactorings

This commit is contained in:
smoogipoo
2020-01-20 19:35:37 +09:00
parent fc331e7752
commit 40f502c6d1
4 changed files with 10 additions and 9 deletions

View File

@ -27,10 +27,10 @@ namespace osu.Game.Screens.Play
return base.OnKeyDown(e);
}
protected override bool OnKeyUp(KeyUpEvent e)
protected override void OnKeyUp(KeyUpEvent e)
{
if (e.Key == Key) IsLit = false;
return base.OnKeyUp(e);
base.OnKeyUp(e);
}
}
}