diff --git a/osu.Game/Rulesets/Scoring/JudgementProcessor.cs b/osu.Game/Rulesets/Scoring/JudgementProcessor.cs
index f38155240e..a643c31daa 100644
--- a/osu.Game/Rulesets/Scoring/JudgementProcessor.cs
+++ b/osu.Game/Rulesets/Scoring/JudgementProcessor.cs
@@ -108,6 +108,14 @@ namespace osu.Game.Rulesets.Scoring
JudgedHits = 0;
}
+ ///
+ /// Reset all statistics based on header information contained within a replay frame.
+ ///
+ ///
+ /// If the provided replay frame does not have any header information, this will be a noop.
+ ///
+ /// The ruleset to be used for retrieving statistics.
+ /// The replay frame to read header statistics from.
public virtual void ResetFromReplayFrame(Ruleset ruleset, ReplayFrame frame)
{
if (frame.Header == null)