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.
|
|
|
|
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Game.Beatmaps;
|
2022-11-16 23:01:29 +08:00
|
|
|
using osu.Game.Overlays;
|
2021-11-25 15:36:30 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
{
|
|
|
|
public class LegacyBeatmapExporter : LegacyExporter<BeatmapSetInfo>
|
|
|
|
{
|
|
|
|
protected override string FileExtension => ".osz";
|
|
|
|
|
2022-11-16 23:01:29 +08:00
|
|
|
public LegacyBeatmapExporter(Storage storage, INotificationOverlay? notificationOverlay)
|
|
|
|
: base(storage, notificationOverlay)
|
2021-11-25 15:36:30 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|