1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 03:57:24 +08:00
osu-lazer/osu.Game/Screens/Select/EditSongSelect.cs

14 lines
416 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-09-29 19:13:58 +08:00
using osu.Game.Beatmaps;
using osu.Game.Screens.Edit;
2016-09-29 19:13:58 +08:00
namespace osu.Game.Screens.Select
2016-09-29 19:13:58 +08:00
{
internal class EditSongSelect : SongSelect
2016-09-29 19:13:58 +08:00
{
protected override void OnSelected(WorkingBeatmap beatmap) => Push(new Editor(beatmap));
2016-09-29 19:13:58 +08:00
}
}