Make `UpdateColours` method protected

This commit is contained in:
Salman Ahmed 2024-07-17 23:58:47 +03:00
parent 102da0f98c
commit 4eb4d35e2f
1 changed files with 4 additions and 1 deletions

View File

@ -100,7 +100,10 @@ public override void Show()
}
}
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;