Add basic structure for skin configurations

This commit is contained in:
Dean Herbert
2018-03-19 19:50:37 +09:00
parent 4e4f3fc039
commit c4f5b46d72
3 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,15 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Beatmaps.Formats;
namespace osu.Game.Skinning
{
public class LegacySkinDecoder : LegacyDecoder<SkinConfiguration>
{
public LegacySkinDecoder(int version)
: base(version)
{
}
}
}