2021-11-25 15:56:19 +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.
|
|
|
|
|
2021-11-25 14:36:12 +08:00
|
|
|
using osu.Game.Skinning;
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
{
|
2021-11-25 15:33:04 +08:00
|
|
|
public class LegacySkinImporter : LegacyModelImporter<SkinInfo>
|
2021-11-25 14:36:12 +08:00
|
|
|
{
|
|
|
|
protected override string ImportFromStablePath => "Skins";
|
|
|
|
|
2021-11-25 14:39:05 +08:00
|
|
|
public LegacySkinImporter(IModelImporter<SkinInfo> importer)
|
2021-11-25 14:36:12 +08:00
|
|
|
: base(importer)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2021-11-25 15:56:19 +08:00
|
|
|
}
|