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 @@ public void Reset() connection.DeleteAll(); } + /// + /// Import multiple from . + /// + /// Multiple locations on disk public void Import(IEnumerable paths) { Stack sets = new Stack(); @@ -151,6 +155,10 @@ public void Import(IEnumerable paths) Import(sets); } + /// + /// Import from . + /// + /// Location on disk public void Import(string path) { Import(new [] { path });