1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 10:37:46 +08:00
osu-lazer/osu.Game/Screens/Select/EditSongSelect.cs

19 lines
444 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 18:19:50 +09:00
2019-01-23 20:52:00 +09:00
using osu.Framework.Screens;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Screens.Select
{
public class EditSongSelect : SongSelect
{
protected override bool ShowFooter => false;
protected override bool OnStart()
2018-04-13 18:19:50 +09:00
{
2019-01-23 20:52:00 +09:00
this.Exit();
2018-04-13 18:19:50 +09:00
return true;
}
}
}