mirror of
https://github.com/osukey/osukey.git
synced 2025-06-03 20:07:18 +09:00
19 lines
503 B
C#
19 lines
503 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|