1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Add setter to legacy skin configuration access

This commit is contained in:
iiSaLMaN 2019-11-20 01:15:40 +03:00
parent 0407d2248c
commit 08b8cedfdf

View File

@ -26,7 +26,11 @@ namespace osu.Game.Skinning
[CanBeNull]
protected IResourceStore<SampleChannel> Samples;
protected new LegacySkinConfiguration Configuration => (LegacySkinConfiguration)base.Configuration;
protected new LegacySkinConfiguration Configuration
{
get => base.Configuration as LegacySkinConfiguration;
set => base.Configuration = value;
}
public LegacySkin(SkinInfo skin, IResourceStore<byte[]> storage, AudioManager audioManager)
: this(skin, new LegacySkinResourceStore<SkinFileInfo>(skin, storage), audioManager, "skin.ini")
@ -41,10 +45,10 @@ namespace osu.Game.Skinning
if (stream != null)
{
using (LineBufferedReader reader = new LineBufferedReader(stream))
base.Configuration = new LegacySkinDecoder().Decode(reader);
Configuration = new LegacySkinDecoder().Decode(reader);
}
else
base.Configuration = new LegacySkinConfiguration { LegacyVersion = LegacySkinConfiguration.LATEST_VERSION };
Configuration = new LegacySkinConfiguration { LegacyVersion = LegacySkinConfiguration.LATEST_VERSION };
if (storage != null)
{