mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 06:57:25 +08:00
22 lines
596 B
C#
22 lines
596 B
C#
//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.Game.Screens.Menu;
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
{
|
|
class TestCaseMenuButtonSystem : TestCase
|
|
{
|
|
public override string Name => @"ButtonSystem";
|
|
public override string Description => @"Main menu button system";
|
|
|
|
public override void Reset()
|
|
{
|
|
base.Reset();
|
|
|
|
Add(new ButtonSystem());
|
|
}
|
|
}
|
|
}
|