1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:47:26 +08:00

Remove ClearComboColours()

This commit is contained in:
iiSaLMaN 2019-11-24 02:07:56 +03:00
parent dfc6973d70
commit 1e24ee7956
2 changed files with 0 additions and 7 deletions

View File

@ -17,10 +17,5 @@ namespace osu.Game.Beatmaps.Formats
/// Adds combo colours to the list.
/// </summary>
void AddComboColours(params Color4[] colours);
/// <summary>
/// Clear current combo colours from the list.
/// </summary>
void ClearComboColours();
}
}

View File

@ -48,8 +48,6 @@ namespace osu.Game.Skinning
public void AddComboColours(params Color4[] colours) => colours.ForEach(c => comboColours.Add(c));
public void ClearComboColours() => comboColours.Clear();
public Dictionary<string, Color4> CustomColours { get; set; } = new Dictionary<string, Color4>();
public readonly Dictionary<string, string> ConfigDictionary = new Dictionary<string, string>();