2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2018-12-10 18:20:41 +08:00
|
|
|
|
using osu.Game.Screens.Multi;
|
2018-12-04 16:43:44 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
2018-12-04 16:43:44 +08:00
|
|
|
|
public class MatchSongSelect : SongSelect, IMultiplayerScreen
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-12-04 16:43:44 +08:00
|
|
|
|
public string ShortTitle => "song selection";
|
|
|
|
|
|
2018-05-30 14:44:35 +08:00
|
|
|
|
protected override bool OnStart()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-06-20 16:41:48 +08:00
|
|
|
|
if (IsCurrentScreen) Exit();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|