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-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-11-25 15:36:30 +08:00
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
{
|
|
|
|
public class LegacySkinExporter : LegacyExporter<SkinInfo>
|
|
|
|
{
|
|
|
|
protected override string FileExtension => ".osk";
|
|
|
|
|
2021-11-25 17:36:01 +08:00
|
|
|
public LegacySkinExporter(Storage storage)
|
|
|
|
: base(storage)
|
2021-11-25 15:36:30 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|