// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using osu.Game.Rulesets.Catch.Skinning; using osu.Game.Tests.Visual; namespace osu.Game.Rulesets.Catch.Tests { public abstract class CatchSkinnableTestScene : SkinnableTestScene { public override IReadOnlyList RequiredTypes => new[] { typeof(CatchRuleset), typeof(CatchLegacySkinTransformer), }; protected override Ruleset CreateRulesetForSkinProvider() => new CatchRuleset(); } }