mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 23:47:32 +08:00
19 lines
492 B
C#
19 lines
492 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Screens.Multi.Screens;
|
|
|
|
namespace osu.Game.Screens.Select
|
|
{
|
|
public class MatchSongSelect : SongSelect, IMultiplayerScreen
|
|
{
|
|
public string ShortTitle => "song selection";
|
|
|
|
protected override bool OnStart()
|
|
{
|
|
if (IsCurrentScreen) Exit();
|
|
return true;
|
|
}
|
|
}
|
|
}
|