// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Rulesets.Difficulty { /// /// Data for generating a performance breakdown by comparing performance to a perfect play. /// public class PerformanceBreakdown { /// /// Actual gameplay performance. /// public PerformanceAttributes Performance { get; set; } /// /// Performance of a perfect play for comparison. /// public PerformanceAttributes PerfectPerformance { get; set; } /// /// Create a new performance breakdown. /// /// Actual gameplay performance. /// Performance of a perfect play for comparison. public PerformanceBreakdown(PerformanceAttributes performance, PerformanceAttributes perfectPerformance) { Performance = performance; PerfectPerformance = perfectPerformance; } } }