// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Game.Overlays; using osu.Game.Overlays.SkinEditor; using osu.Game.Rulesets; using osu.Game.Rulesets.Osu; namespace osu.Game.Tests.Visual.Gameplay { public partial class TestSceneSkinEditorComponentsList : SkinnableTestScene { [Cached] private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue); [Test] public void TestToggleEditor() { AddStep("show available components", () => SetContents(_ => new SkinComponentToolbox { Anchor = Anchor.TopRight, Origin = Anchor.TopRight, Width = 0.6f, })); } protected override Ruleset CreateRulesetForSkinProvider() => new OsuRuleset(); } }