Make UpdateColours method protected

This commit is contained in:
Salman Ahmed 2024-07-17 23:58:47 +03:00
parent 102da0f98c
commit 4eb4d35e2f

View File

@ -100,7 +100,10 @@ namespace osu.Game.Overlays
}
}
public void UpdateColours()
/// <summary>
/// Updates the colours of the background and the top waves with the latest colour shades provided by <see cref="ColourProvider"/>.
/// </summary>
protected void UpdateColours()
{
Waves.FirstWaveColour = ColourProvider.Light4;
Waves.SecondWaveColour = ColourProvider.Light3;