Remove parameter of OnSelected.

This commit is contained in:
Huo Yaoyuan
2017-03-14 22:22:23 +08:00
parent b2dd9afcf3
commit a8d15e616b
4 changed files with 5 additions and 9 deletions

View File

@ -1,13 +1,11 @@
// 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.Game.Beatmaps;
namespace osu.Game.Screens.Select
{
internal class MatchSongSelect : SongSelect
{
public MatchSongSelect() : base(true) { }
protected override void OnSelected(WorkingBeatmap beatmap) => Exit();
protected override void OnSelected() => Exit();
}
}