mirror of
https://github.com/osukey/osukey.git
synced 2025-05-01 03:37:17 +09:00
19 lines
508 B
C#
19 lines
508 B
C#
using osu.Framework.Platform;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.IO;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
public class LegacyBeatmapImporter : LegacyModelImporter<BeatmapSetInfo>
|
|
{
|
|
protected override string ImportFromStablePath => ".";
|
|
|
|
protected override Storage PrepareStableStorage(StableStorage stableStorage) => stableStorage.GetSongStorage();
|
|
|
|
public LegacyBeatmapImporter(IModelImporter<BeatmapSetInfo> importer)
|
|
: base(importer)
|
|
{
|
|
}
|
|
}
|
|
}
|