osu/osu.Game/Database/LegacySkinExporter.cs

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

19 lines
480 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.
using osu.Framework.Platform;
using osu.Game.Skinning;
namespace osu.Game.Database
{
2022-12-15 12:39:48 +00:00
public class LegacySkinExporter : LegacyArchiveExporter<SkinInfo>
{
2023-04-09 06:43:18 +00:00
public LegacySkinExporter(Storage storage)
: base(storage)
{
}
protected override string FileExtension => @".osk";
}
}