Move and correct xmldoc to interfaces

This commit is contained in:
Dean Herbert
2022-06-14 20:00:16 +09:00
parent 84e526a2d9
commit e96c5ce703
2 changed files with 9 additions and 9 deletions

View File

@ -12,14 +12,22 @@ namespace osu.Game.Database
public interface ICanAcceptFiles
{
/// <summary>
/// Import the specified paths.
/// Import one or more items from filesystem <paramref name="paths"/>.
/// </summary>
/// <remarks>
/// This will be treated as a low priority batch import if more than one path is specified.
/// This will post notifications tracking progress.
/// </remarks>
/// <param name="paths">The files which should be imported.</param>
Task Import(params string[] paths);
/// <summary>
/// Import the specified files from the given import tasks.
/// </summary>
/// <remarks>
/// This will be treated as a low priority batch import if more than one path is specified.
/// This will post notifications tracking progress.
/// </remarks>
/// <param name="tasks">The import tasks from which the files should be imported.</param>
Task Import(params ImportTask[] tasks);