mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 22:27:39 +08:00
17 lines
438 B
C#
17 lines
438 B
C#
|
using osu.Framework.Bindables;
|
|||
|
using osu.Game.Beatmaps;
|
|||
|
using osu.Game.Online;
|
|||
|
|
|||
|
namespace osu.Game.Overlays.Direct
|
|||
|
{
|
|||
|
public abstract class BeatmapDownloadTrackingComposite : DownloadTrackingComposite<BeatmapSetInfo, BeatmapManager>
|
|||
|
{
|
|||
|
public Bindable<BeatmapSetInfo> BeatmapSet => ModelInfo;
|
|||
|
|
|||
|
public BeatmapDownloadTrackingComposite(BeatmapSetInfo set = null)
|
|||
|
: base(set)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|