mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
TwoLayerButton
This commit is contained in:
27
osu.Desktop.VisualTests/Tests/TestCaseTwoLayerButton.cs
Normal file
27
osu.Desktop.VisualTests/Tests/TestCaseTwoLayerButton.cs
Normal file
@ -0,0 +1,27 @@
|
||||
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
||||
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using osu.Framework.GameModes.Testing;
|
||||
using osu.Framework.Graphics.Colour;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Game.Graphics.UserInterface;
|
||||
using osu.Game.Screens.Menu;
|
||||
using OpenTK.Graphics;
|
||||
|
||||
namespace osu.Desktop.VisualTests.Tests
|
||||
{
|
||||
class TestCaseTwoLayerButton : TestCase
|
||||
{
|
||||
public override string Name => @"TwoLayerButton";
|
||||
public override string Description => @"Back and skip and what not";
|
||||
|
||||
public override void Reset()
|
||||
{
|
||||
base.Reset();
|
||||
|
||||
Add(new BackButton());
|
||||
Add(new SkipButton());
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user