2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-28 14:30:06 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
using osu.Framework.Screens.Testing;
|
2016-11-30 13:38:45 +08:00
|
|
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Game.Screens.Menu;
|
2016-11-30 13:38:45 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2016-09-28 14:30:06 +08:00
|
|
|
|
|
2016-10-26 16:26:26 +08:00
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
2016-09-28 14:30:06 +08:00
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
internal class TestCaseMenuButtonSystem : TestCase
|
2016-09-28 14:30:06 +08:00
|
|
|
|
{
|
|
|
|
|
public override string Description => @"Main menu button system";
|
|
|
|
|
|
|
|
|
|
public override void Reset()
|
|
|
|
|
{
|
|
|
|
|
base.Reset();
|
|
|
|
|
|
2016-11-30 13:38:45 +08:00
|
|
|
|
Add(new Box
|
|
|
|
|
{
|
|
|
|
|
ColourInfo = ColourInfo.GradientVertical(Color4.Gray, Color4.WhiteSmoke),
|
|
|
|
|
RelativeSizeAxes = Framework.Graphics.Axes.Both,
|
|
|
|
|
});
|
2016-09-28 14:30:06 +08:00
|
|
|
|
Add(new ButtonSystem());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|