// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Rulesets.Configuration; namespace osu.Game.Rulesets { /// /// A cache that provides a single per-ruleset. /// This is done to support referring to and updating ruleset configs from multiple locations in the absence of inter-config bindings. /// public interface IRulesetConfigCache { /// /// Retrieves the for a . /// /// The to retrieve the for. /// The defined by , null if doesn't define one. public IRulesetConfigManager? GetConfigFor(Ruleset ruleset); } }