Add beatmap import and file store tests

This commit is contained in:
Dean Herbert
2021-10-01 00:05:14 +09:00
parent d95a62fa56
commit 49969ac328
3 changed files with 826 additions and 4 deletions

View File

@ -4,6 +4,8 @@
using System;
using System.Collections.Generic;
#nullable enable
namespace osu.Game.Database
{
public interface IPostImports<out TModel>
@ -12,6 +14,6 @@ namespace osu.Game.Database
/// <summary>
/// Fired when the user requests to view the resulting import.
/// </summary>
public Action<IEnumerable<ILive<TModel>>> PostImport { set; }
public Action<IEnumerable<ILive<TModel>>>? PostImport { set; }
}
}