Update editor workflow and make edit button works.

This commit is contained in:
Huo Yaoyuan
2017-03-14 22:18:40 +08:00
parent f068f7c4bd
commit b2dd9afcf3
4 changed files with 21 additions and 12 deletions

View File

@ -2,13 +2,12 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Beatmaps;
using osu.Game.Screens.Edit;
namespace osu.Game.Screens.Select
{
internal class EditSongSelect : SongSelect
{
public EditSongSelect() : base(false) { }
protected override void OnSelected(WorkingBeatmap beatmap) => Push(new Editor(beatmap));
protected override void OnSelected(WorkingBeatmap beatmap) => Exit();
}
}