1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 03:39:53 +08:00

Make UpdateColours method protected

This commit is contained in:
Salman Ahmed
2024-07-17 23:58:47 +03:00
Unverified
parent 102da0f98c
commit 4eb4d35e2f
+4 -1
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;