osu/osu.Game/Screens/Select/MatchSongSelect.cs

19 lines
484 B
C#
Raw Normal View History

2018-04-13 09:19:50 +00: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 10:20:41 +00:00
using osu.Game.Screens.Multi;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Screens.Select
{
public class MatchSongSelect : SongSelect, IMultiplayerScreen
2018-04-13 09:19:50 +00:00
{
public string ShortTitle => "song selection";
protected override bool OnStart()
2018-04-13 09:19:50 +00:00
{
if (IsCurrentScreen) Exit();
2018-04-13 09:19:50 +00:00
return true;
}
}
}