mirror of
https://github.com/osukey/osukey.git
synced 2025-06-12 06:47:59 +09:00
18 lines
502 B
C#
18 lines
502 B
C#
using osu.Framework.Platform;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.IO;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
public class StableBeatmapImporter : StableImporter<BeatmapSetInfo>
|
|
{
|
|
protected override string ImportFromStablePath => ".";
|
|
|
|
protected override Storage PrepareStableStorage(StableStorage stableStorage) => stableStorage.GetSongStorage();
|
|
|
|
public StableBeatmapImporter(IModelImporter<BeatmapSetInfo> importer)
|
|
: base(importer)
|
|
{
|
|
}
|
|
}
|
|
} |