2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-01-27 20:08:36 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
using osu.Framework.Screens.Testing;
|
2017-01-27 20:08:36 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2017-01-27 20:57:22 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2017-01-27 20:08:36 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
|
|
|
{
|
|
|
|
|
class TestCaseTwoLayerButton : TestCase
|
|
|
|
|
{
|
|
|
|
|
public override string Description => @"Back and skip and what not";
|
|
|
|
|
|
|
|
|
|
public override void Reset()
|
|
|
|
|
{
|
|
|
|
|
base.Reset();
|
|
|
|
|
|
|
|
|
|
Add(new BackButton());
|
|
|
|
|
Add(new SkipButton());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|