mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 19:52:55 +08:00
Add more xmldoc
This commit is contained in:
parent
a0a65abcac
commit
fe5df663be
@ -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; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user