mirror of
https://github.com/ppy/osu
synced 2024-12-24 15:53:37 +00:00
Remove set from properties in SkinConfiguration classes
I don't get why this wasn't resolved in the first place when this file was originally written. *sigh*
This commit is contained in:
parent
a290f7eeec
commit
3cc169c933
@ -23,7 +23,7 @@ namespace osu.Game.Skinning
|
||||
|
||||
public readonly int Keys;
|
||||
|
||||
public Dictionary<string, Color4> CustomColours { get; set; } = new Dictionary<string, Color4>();
|
||||
public Dictionary<string, Color4> CustomColours { get; } = new Dictionary<string, Color4>();
|
||||
|
||||
public Dictionary<string, string> ImageLookups = new Dictionary<string, string>();
|
||||
|
||||
|
@ -45,7 +45,7 @@ namespace osu.Game.Skinning
|
||||
|
||||
public void AddComboColours(params Color4[] colours) => comboColours.AddRange(colours);
|
||||
|
||||
public Dictionary<string, Color4> CustomColours { get; set; } = new Dictionary<string, Color4>();
|
||||
public Dictionary<string, Color4> CustomColours { get; } = new Dictionary<string, Color4>();
|
||||
|
||||
public readonly Dictionary<string, string> ConfigDictionary = new Dictionary<string, string>();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user