1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 12:53:11 +08:00

Add xmldoc to HitErrorMeter.Clear

Explains how the method is called and what inheritors should do when implementing it.
This commit is contained in:
sh0ckR6 2021-09-18 12:18:11 -04:00
parent 12cc16c598
commit f6e279baa1
No known key found for this signature in database
GPG Key ID: 701938030071AF85

View File

@ -73,6 +73,10 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
}
}
/// <summary>
/// Invoked by <see cref="Player.OnSeek"/> when the active <see cref="Player"/> seeks through the current beatmap.
/// Any inheritors of <see cref="HitErrorMeter"/> should have this method clear their container that displays the hit error results.
/// </summary>
public abstract void Clear();
protected override void Dispose(bool isDisposing)