Pass input state in OnSelected.

This commit is contained in:
Huo Yaoyuan
2017-08-04 00:09:41 +08:00
parent df3f75b842
commit 44fd0eb78b
4 changed files with 14 additions and 23 deletions

View File

@ -1,12 +1,14 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Input;
namespace osu.Game.Screens.Select
{
public class EditSongSelect : SongSelect
{
protected override bool ShowFooter => false;
protected override void OnSelected() => Exit();
protected override void OnSelected(InputState state) => Exit();
}
}