osu/osu.Game/Database/LegacyBeatmapExporter.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
651 B
C#
Raw Normal View History

// 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-18 16:02:35 +00:00
using System.IO;
using osu.Framework.Platform;
using osu.Game.Beatmaps;
2022-11-17 14:38:24 +00:00
using osu.Game.Overlays.Notifications;
namespace osu.Game.Database
{
2022-11-17 14:38:24 +00:00
public class LegacyBeatmapExporter : LegacyModelExporter<BeatmapSetInfo>
{
protected override string FileExtension => ".osz";
2022-11-18 16:02:35 +00:00
public LegacyBeatmapExporter(Storage storage, RealmAccess realm, ProgressNotification notification, Stream? stream = null)
: base(storage, realm, notification, stream)
{
}
}
}