// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using System.Collections.Generic; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Game.Screens.Edit.Screens.Compose.BeatSnap; namespace osu.Game.Tests.Visual { public class TestCaseBeatSnapVisualiser : OsuTestCase { public override IReadOnlyList RequiredTypes => new[] { typeof(BeatSnapVisualiser), typeof(TickContainer) }; [BackgroundDependencyLoader] private void load() { Child = new BeatSnapVisualiser { Anchor = Anchor.Centre, Origin = Anchor.Centre, Y = -200 }; } } }