1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 22:33:05 +08:00

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
{
/// <summary>
/// A global component which calculates and caches results of performance calculations for locally databased scores.
/// </summary>
public class ScorePerformanceManager : Component
{
private readonly ConcurrentDictionary<PerformanceCacheLookup, double> performanceCache = new ConcurrentDictionary<PerformanceCacheLookup, double>();