Move TaikoPlayfield to separate file.

This commit is contained in:
smoogipooo
2017-03-21 15:09:54 +09:00
parent 27a21cd23d
commit 10ed6ef10d
5 changed files with 493 additions and 15 deletions

View File

@ -1 +1,23 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Screens.Testing;
using osu.Game.Modes.Taiko.UI;
namespace osu.Desktop.VisualTests.Tests
{
internal class TestCaseTaikoPlayfield : TestCase
{
public override string Description => "Taiko playfield";
public override void Reset()
{
base.Reset();
Add(new TaikoPlayfield
{
Y = 200
});
}
}
}