From 09e0bd7a7853ff4663896e5b66cbfb45e781da8c Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 1 Nov 2017 16:58:12 +0900 Subject: [PATCH] Remove unused class file --- osu.Game/Tests/Visual/TestCaseIntro.cs | 42 -------------------------- 1 file changed, 42 deletions(-) delete mode 100644 osu.Game/Tests/Visual/TestCaseIntro.cs diff --git a/osu.Game/Tests/Visual/TestCaseIntro.cs b/osu.Game/Tests/Visual/TestCaseIntro.cs deleted file mode 100644 index d803caf2b0..0000000000 --- a/osu.Game/Tests/Visual/TestCaseIntro.cs +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2007-2017 ppy Pty Ltd . -// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE - -using OpenTK.Graphics; -using osu.Framework.Graphics; -using osu.Framework.Graphics.Containers; -using osu.Framework.Graphics.Shapes; -using osu.Framework.Timing; -using osu.Game.Screens.Menu; - -namespace osu.Game.Tests.Visual -{ - internal class TestCaseIntro : OsuTestCase - { - public TestCaseIntro() - { - IntroSequence intro; - - var rateAdjustClock = new StopwatchClock(true); - var framedClock = new FramedClock(rateAdjustClock); - framedClock.ProcessFrame(); - - Add(new Container - { - RelativeSizeAxes = Axes.Both, - Clock = framedClock, - Children = new Drawable[] - { - new Box - { - RelativeSizeAxes = Axes.Both, - Colour = Color4.Black, - }, - intro = new IntroSequence(), - } - }); - - AddStep(@"Restart", intro.Restart); - AddSliderStep("Playback speed", 0.0, 2.0, 1, v => rateAdjustClock.Rate = v); - } - } -}