mirror of
https://github.com/osukey/osukey.git
synced 2025-05-05 05:37:18 +09: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)
|
|
{
|
|
}
|
|
}
|
|
}
|