From fe5df663be1c648eb4c0c41398d447141e8eaa04 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 15 Feb 2018 15:14:46 +0900 Subject: [PATCH] Add more xmldoc --- osu.Game/Database/ICanAcceptFiles.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/osu.Game/Database/ICanAcceptFiles.cs b/osu.Game/Database/ICanAcceptFiles.cs index d09000525d..40978277b1 100644 --- a/osu.Game/Database/ICanAcceptFiles.cs +++ b/osu.Game/Database/ICanAcceptFiles.cs @@ -1,9 +1,19 @@ namespace osu.Game.Database { + /// + /// A class which can accept files for importing. + /// public interface ICanAcceptFiles { + /// + /// Import the specified paths. + /// + /// The files which should be imported. void Import(params string[] paths); + /// + /// An array of accepted file extensions (in the standard format of ".abc"). + /// string[] HandledExtensions { get; } } }