Remove SkinConfiguration subclasses and allow configuration parsing for all skin types

This commit is contained in:
Dean Herbert
2021-10-22 14:41:59 +09:00
parent 82d0a6515f
commit 93482414d6
20 changed files with 92 additions and 96 deletions

View File

@ -106,7 +106,7 @@ namespace osu.Game.Tests.Skins
var decoder = new LegacySkinDecoder();
using (var resStream = TestResources.OpenResource("skin-latest.ini"))
using (var stream = new LineBufferedReader(resStream))
Assert.AreEqual(LegacySkinConfiguration.LATEST_VERSION, decoder.Decode(stream).LegacyVersion);
Assert.AreEqual(SkinConfiguration.LATEST_VERSION, decoder.Decode(stream).LegacyVersion);
}
[Test]