2017-02-07 13:59:30 +09: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 21:08:36 +09:00
|
|
|
|
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
2017-08-04 15:37:31 +09:00
|
|
|
|
namespace osu.Desktop.Tests.Visual
|
2017-01-27 21:08:36 +09:00
|
|
|
|
{
|
2017-08-04 15:37:31 +09:00
|
|
|
|
internal class TestCaseTwoLayerButton : OsuTestCase
|
2017-01-27 21:08:36 +09:00
|
|
|
|
{
|
2017-06-03 17:33:24 +02:00
|
|
|
|
public override string Description => @"Mostly back button";
|
2017-01-27 21:08:36 +09:00
|
|
|
|
|
2017-07-07 15:05:55 +03:00
|
|
|
|
public TestCaseTwoLayerButton()
|
2017-01-27 21:08:36 +09:00
|
|
|
|
{
|
|
|
|
|
Add(new BackButton());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|