mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 13:37:25 +08:00
14 lines
318 B
C#
14 lines
318 B
C#
|
using osu.Game.Skinning;
|
||
|
|
||
|
namespace osu.Game.Database
|
||
|
{
|
||
|
public class StableSkinImporter : StableImporter<SkinInfo>
|
||
|
{
|
||
|
protected override string ImportFromStablePath => "Skins";
|
||
|
|
||
|
public StableSkinImporter(IModelImporter<SkinInfo> importer)
|
||
|
: base(importer)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|