Add comments and tidy up

This commit is contained in:
Henry Lin
2022-01-18 21:59:51 +08:00
parent 43e5bd731c
commit a5b53c01c8
2 changed files with 10 additions and 4 deletions

View File

@ -140,8 +140,14 @@ namespace osu.Game.Screens.Ranking.Expanded.Statistics
public class PerformanceBreakdown
{
/// <summary>
/// Actual gameplay performance.
/// </summary>
public PerformanceAttributes Performance { get; set; }
/// <summary>
/// Performance of a perfect play for comparison.
/// </summary>
public PerformanceAttributes PerfectPerformance { get; set; }
}
}