Add more xmldoc

This commit is contained in:
Dean Herbert 2018-02-15 15:14:46 +09:00
parent a0a65abcac
commit fe5df663be
1 changed files with 10 additions and 0 deletions

View File

@ -1,9 +1,19 @@
namespace osu.Game.Database
{
/// <summary>
/// A class which can accept files for importing.
/// </summary>
public interface ICanAcceptFiles
{
/// <summary>
/// Import the specified paths.
/// </summary>
/// <param name="paths">The files which should be imported.</param>
void Import(params string[] paths);
/// <summary>
/// An array of accepted file extensions (in the standard format of ".abc").
/// </summary>
string[] HandledExtensions { get; }
}
}