mirror of
https://github.com/ppy/osu
synced 2024-12-13 18:37:04 +00:00
14 lines
323 B
C#
14 lines
323 B
C#
using osu.Game.Skinning;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
public class LegacySkinImporter : LegacyModelImporter<SkinInfo>
|
|
{
|
|
protected override string ImportFromStablePath => "Skins";
|
|
|
|
public LegacySkinImporter(IModelImporter<SkinInfo> importer)
|
|
: base(importer)
|
|
{
|
|
}
|
|
}
|
|
} |