1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-02 01:17:24 +08:00
osu-lazer/osu.Desktop.Tests/Visual/TestCaseTwoLayerButton.cs

18 lines
483 B
C#
Raw Normal View History

// 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
using osu.Game.Graphics.UserInterface;
namespace osu.Desktop.Tests.Visual
2017-01-27 20:08:36 +08:00
{
internal class TestCaseTwoLayerButton : OsuTestCase
2017-01-27 20:08:36 +08:00
{
public override string Description => @"Mostly back button";
2017-01-27 20:08:36 +08:00
public TestCaseTwoLayerButton()
2017-01-27 20:08:36 +08:00
{
Add(new BackButton());
}
}
}