2021-11-25 07:36:30 +00: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;
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
{
|
2022-12-15 12:39:48 +00:00
|
|
|
public class LegacyBeatmapExporter : LegacyArchiveExporter<BeatmapSetInfo>
|
2021-11-25 07:36:30 +00:00
|
|
|
{
|
2023-04-09 13:15:00 +00:00
|
|
|
public LegacyBeatmapExporter(Storage storage)
|
|
|
|
: base(storage)
|
2021-11-25 07:36:30 +00:00
|
|
|
{
|
|
|
|
}
|
2022-11-21 09:58:01 +00:00
|
|
|
|
|
|
|
protected override string FileExtension => ".osz";
|
2021-11-25 07:36:30 +00:00
|
|
|
}
|
|
|
|
}
|