Add placeholder download method with progress bar

This commit is contained in:
Dean Herbert
2017-08-24 18:51:50 +09:00
parent 36629f5207
commit cacf256aad
3 changed files with 36 additions and 1 deletions

View File

@ -12,6 +12,7 @@ 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
{
@ -171,5 +172,11 @@ namespace osu.Game.Overlays.Direct
},
});
}
protected override bool OnClick(InputState state)
{
StartDownload();
return true;
}
}
}