1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 22:27:25 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseTaikoPlayfield.cs
2017-03-21 15:09:54 +09:00

24 lines
594 B
C#

// 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
});
}
}
}