Group export methods into their respective managers

This commit is contained in:
cdwcgt
2022-12-11 18:30:24 +09:00
parent a87bcccc42
commit e02b8cb199
10 changed files with 80 additions and 87 deletions

View File

@ -3,14 +3,13 @@
using osu.Framework.Platform;
using osu.Game.Beatmaps;
using osu.Game.Overlays;
namespace osu.Game.Database
{
public class LegacyBeatmapExporter : LegacyModelExporter<BeatmapSetInfo>
{
public LegacyBeatmapExporter(Storage storage, RealmAccess realm, INotificationOverlay? notifications = null)
: base(storage, realm, notifications)
public LegacyBeatmapExporter(Storage storage, RealmAccess realm)
: base(storage, realm)
{
}