mirror of https://github.com/ppy/osu
19 lines
514 B
C#
19 lines
514 B
C#
|
// 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.Skinning;
|
||
|
|
||
|
namespace osu.Game.Database
|
||
|
{
|
||
|
public class LegacySkinExporter : LegacyExporter<SkinInfo>
|
||
|
{
|
||
|
protected override string FileExtension => ".osk";
|
||
|
|
||
|
public LegacySkinExporter(Storage storage, IModelManager<SkinInfo> manager)
|
||
|
: base(storage, manager)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|