mirror of
https://github.com/ppy/osu.git
synced 2026-05-15 14:52:53 +08:00
fe325ba861
Closes https://github.com/ppy/osu/issues/33337. See also: https://github.com/ppy/osu/pull/28034#issuecomment-2084450285
21 lines
540 B
C#
21 lines
540 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 : LegacyArchiveExporter<SkinInfo>
|
|
{
|
|
public LegacySkinExporter(Storage storage)
|
|
: base(storage)
|
|
{
|
|
}
|
|
|
|
protected override bool UseFixedEncoding => false;
|
|
|
|
protected override string FileExtension => @".osk";
|
|
}
|
|
}
|