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

18 lines
479 B
C#
Raw Normal View History

2017-09-18 13:32:49 +00:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.ComponentModel;
2017-09-18 13:32:49 +00:00
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Tests.Visual
{
[Description("mostly back button")]
2017-09-18 13:32:49 +00:00
internal class TestCaseTwoLayerButton : OsuTestCase
{
public TestCaseTwoLayerButton()
{
Add(new BackButton());
}
}
}