From c88c6c4c628f9cb6e08783fd414c536a81c63e13 Mon Sep 17 00:00:00 2001 From: Mikal Stodal Date: Thu, 2 Mar 2017 15:37:45 +0100 Subject: [PATCH] More summaries --- osu.Game/Database/BeatmapDatabase.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/osu.Game/Database/BeatmapDatabase.cs b/osu.Game/Database/BeatmapDatabase.cs index 7ce4ad0d84..e8638c11b0 100644 --- a/osu.Game/Database/BeatmapDatabase.cs +++ b/osu.Game/Database/BeatmapDatabase.cs @@ -116,6 +116,10 @@ namespace osu.Game.Database connection.DeleteAll(); } + /// + /// Import multiple from . + /// + /// Multiple locations on disk public void Import(IEnumerable paths) { Stack sets = new Stack(); @@ -151,6 +155,10 @@ namespace osu.Game.Database Import(sets); } + /// + /// Import from . + /// + /// Location on disk public void Import(string path) { Import(new [] { path });