// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Concurrent; using osu.Framework.Graphics; namespace osu.Game.Database { /// /// A component which performs lookups (or calculations) and caches the results. /// Currently not persisted between game sessions. /// public abstract class MemoryCachingComponent : Component { protected readonly ConcurrentDictionary Cache = new ConcurrentDictionary(); } }