mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 11:27:44 +08:00
22 lines
586 B
C#
22 lines
586 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.GameModes.Menu;
|
|||
|
|
|||
|
namespace osu.Desktop.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());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|