osu/osu.Game.Tests/Visual/UserInterface/TestCaseTwoLayerButton.cs

18 lines
473 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 09:19:50 +00:00
using System.ComponentModel;
using osu.Game.Graphics.UserInterface;
2019-03-24 16:02:36 +00:00
namespace osu.Game.Tests.Visual.UserInterface
2018-04-13 09:19:50 +00:00
{
[Description("mostly back button")]
public class TestCaseTwoLayerButton : OsuTestCase
{
public TestCaseTwoLayerButton()
{
Add(new BackButton());
}
}
}