2021-11-25 15:36:30 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-11-19 00:02:35 +08:00
|
|
|
using System.IO;
|
2021-11-25 15:36:30 +08:00
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Game.Beatmaps;
|
2022-11-17 22:38:24 +08:00
|
|
|
using osu.Game.Overlays.Notifications;
|
2021-11-25 15:36:30 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
{
|
2022-11-17 22:38:24 +08:00
|
|
|
public class LegacyBeatmapExporter : LegacyModelExporter<BeatmapSetInfo>
|
2021-11-25 15:36:30 +08:00
|
|
|
{
|
|
|
|
protected override string FileExtension => ".osz";
|
|
|
|
|
2022-11-19 00:02:35 +08:00
|
|
|
public LegacyBeatmapExporter(Storage storage, RealmAccess realm, ProgressNotification notification, Stream? stream = null)
|
|
|
|
: base(storage, realm, notification, stream)
|
2021-11-25 15:36:30 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|