// 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.Testing { /// /// An interface that can be assigned to test scenes to indicate /// that the test scene is testing ruleset-specific components. /// This is to cache required ruleset dependencies for the components. /// public interface IRulesetTestScene { /// /// Retrieves the ruleset that is going /// to be tested by this test scene. /// /// The . Ruleset CreateRuleset(); } }