2019-06-12 03:11:17 +08:00
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Bindables;
|
2019-06-12 01:31:01 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Online;
|
|
|
|
|
|
2020-04-21 15:03:18 +08:00
|
|
|
|
namespace osu.Game.Overlays
|
2019-06-12 01:31:01 +08:00
|
|
|
|
{
|
|
|
|
|
public abstract class BeatmapDownloadTrackingComposite : DownloadTrackingComposite<BeatmapSetInfo, BeatmapManager>
|
|
|
|
|
{
|
2019-06-26 23:29:09 +08:00
|
|
|
|
public Bindable<BeatmapSetInfo> BeatmapSet => Model;
|
2019-06-12 01:31:01 +08:00
|
|
|
|
|
2019-06-12 03:17:02 +08:00
|
|
|
|
protected BeatmapDownloadTrackingComposite(BeatmapSetInfo set = null)
|
2019-06-12 01:31:01 +08:00
|
|
|
|
: base(set)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|