Rename IntroFallback classes to IntroLegacy

This commit also renames files accordingly with https://github.com/ppy/osu-resources/pull/103
This commit is contained in:
Shivam
2020-06-02 13:14:50 +02:00
parent 19d73af90d
commit 888b90b426
6 changed files with 10 additions and 10 deletions

View File

@ -0,0 +1,15 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Framework.Screens;
using osu.Game.Screens.Menu;
namespace osu.Game.Tests.Visual.Menus
{
[TestFixture]
public class TestSceneIntroLegacy : IntroTestScene
{
protected override IScreen CreateScreen() => new IntroLegacy();
}
}