Improve namespaces of key bindings

This commit is contained in:
Dean Herbert
2017-08-16 17:19:27 +09:00
parent 89987229de
commit dc82a88bb8
8 changed files with 32 additions and 34 deletions

View File

@ -1,19 +1,17 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Overlays.KeyConfiguration;
namespace osu.Desktop.Tests.Visual
{
public class TestCaseKeyConfiguration : OsuTestCase
{
private readonly KeyConfiguration configuration;
private readonly KeyConfigurationOverlay configuration;
public override string Description => @"Key configuration";
public TestCaseKeyConfiguration()
{
Child = configuration = new KeyConfiguration();
Child = configuration = new KeyConfigurationOverlay();
}
protected override void LoadComplete()