mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Fix incorrectly specified events
This commit is contained in:
@ -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"/>.
|
||||
|
Reference in New Issue
Block a user