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

@ -17,13 +17,13 @@ namespace osu.Game.Database
/// Fired when a <typeparamref name="T"/> download begins.
/// This is NOT run on the update thread and should be scheduled.
/// </summary>
Action<ArchiveDownloadRequest<T>> DownloadBegan { get; set; }
event Action<ArchiveDownloadRequest<T>> DownloadBegan;
/// <summary>
/// Fired when a <typeparamref name="T"/> download is interrupted, either due to user cancellation or failure.
/// This is NOT run on the update thread and should be scheduled.
/// </summary>
Action<ArchiveDownloadRequest<T>> DownloadFailed { get; set; }
event Action<ArchiveDownloadRequest<T>> DownloadFailed;
/// <summary>
/// Begin a download for the requested <typeparamref name="T"/>.