Add xmldoc for new component

This commit is contained in:
Dean Herbert 2020-11-02 14:50:44 +09:00
parent fb105a1e9c
commit d46f7535c9

View File

@ -12,6 +12,9 @@ using osu.Game.Beatmaps;
namespace osu.Game.Scoring namespace osu.Game.Scoring
{ {
/// <summary>
/// A global component which calculates and caches results of performance calculations for locally databased scores.
/// </summary>
public class ScorePerformanceManager : Component public class ScorePerformanceManager : Component
{ {
private readonly ConcurrentDictionary<PerformanceCacheLookup, double> performanceCache = new ConcurrentDictionary<PerformanceCacheLookup, double>(); private readonly ConcurrentDictionary<PerformanceCacheLookup, double> performanceCache = new ConcurrentDictionary<PerformanceCacheLookup, double>();