1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-19 13:02:55 +08:00
osu-lazer/osu.Desktop.Tests/Visual/TestCaseKeyConfiguration.cs

24 lines
682 B
C#
Raw Normal View History

2017-08-10 21:21:22 +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
namespace osu.Desktop.Tests.Visual
{
public class TestCaseKeyConfiguration : OsuTestCase
{
2017-08-16 16:19:27 +08:00
private readonly KeyConfigurationOverlay configuration;
2017-08-10 21:21:22 +08:00
public override string Description => @"Key configuration";
public TestCaseKeyConfiguration()
{
2017-08-16 16:19:27 +08:00
Child = configuration = new KeyConfigurationOverlay();
2017-08-10 21:21:22 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
configuration.Show();
}
}
}