2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-09-18 21:32:49 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-11-23 15:00:33 +08:00
|
|
|
|
using System.ComponentModel;
|
2017-09-18 21:32:49 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
2017-11-23 15:00:33 +08:00
|
|
|
|
[Description("mostly back button")]
|
2017-12-20 20:47:45 +08:00
|
|
|
|
public class TestCaseTwoLayerButton : OsuTestCase
|
2017-09-18 21:32:49 +08:00
|
|
|
|
{
|
|
|
|
|
public TestCaseTwoLayerButton()
|
|
|
|
|
{
|
|
|
|
|
Add(new BackButton());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|