mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
21 lines
724 B
C#
21 lines
724 B
C#
// 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.Platform;
|
|
using osu.Game.Database;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
namespace osu.Game.Scoring
|
|
{
|
|
public class ScoreModelDownloader : ModelDownloader<ScoreInfo>
|
|
{
|
|
public ScoreModelDownloader(ScoreModelManager scoreManager, IAPIProvider api, IIpcHost importHost = null)
|
|
: base(scoreManager, api, importHost)
|
|
{
|
|
}
|
|
|
|
protected override ArchiveDownloadRequest<ScoreInfo> CreateDownloadRequest(ScoreInfo score, bool minimiseDownload) => new DownloadReplayRequest(score);
|
|
}
|
|
}
|