Rename Stable to Legacy and add xmldoc

This commit is contained in:
Dean Herbert
2021-11-25 15:39:05 +09:00
parent 6cab7b877d
commit 9dcb20a821
8 changed files with 31 additions and 28 deletions

View File

@ -0,0 +1,18 @@
using osu.Framework.Platform;
using osu.Game.Beatmaps;
using osu.Game.IO;
namespace osu.Game.Database
{
public class LegacyBeatmapImporter : LegacyImporter<BeatmapSetInfo>
{
protected override string ImportFromStablePath => ".";
protected override Storage PrepareStableStorage(StableStorage stableStorage) => stableStorage.GetSongStorage();
public LegacyBeatmapImporter(IModelImporter<BeatmapSetInfo> importer)
: base(importer)
{
}
}
}