Add minimal viable implementation of BeatmapSetOver in game

This commit is contained in:
Dean Herbert
2017-09-25 17:58:03 +08:00
parent 5be11f539b
commit c2bb3ea7bc
4 changed files with 15 additions and 9 deletions

View File

@ -12,7 +12,6 @@ using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Framework.Graphics.Shapes;
using osu.Game.Beatmaps;
using osu.Framework.Input;
namespace osu.Game.Overlays.Direct
{
@ -172,11 +171,5 @@ namespace osu.Game.Overlays.Direct
},
});
}
protected override bool OnClick(InputState state)
{
StartDownload();
return true;
}
}
}