Fix incorrectly specified events

This commit is contained in:
Dean Herbert
2021-11-06 22:31:49 +09:00
parent 96ef210a4d
commit 89cc2523ef
6 changed files with 32 additions and 32 deletions

View File

@ -19,9 +19,9 @@ namespace osu.Game.Database
{
public Action<Notification> PostNotification { protected get; set; }
public Action<ArchiveDownloadRequest<T>> DownloadBegan { get; set; }
public event Action<ArchiveDownloadRequest<T>> DownloadBegan;
public Action<ArchiveDownloadRequest<T>> DownloadFailed { get; set; }
public event Action<ArchiveDownloadRequest<T>> DownloadFailed;
private readonly IModelImporter<TModel> importer;
private readonly IAPIProvider api;