Integrate key binding config with main settings

This commit is contained in:
Dean Herbert
2017-08-16 19:17:42 +09:00
parent 7e21ddb5eb
commit 5ebec53970
5 changed files with 139 additions and 65 deletions

View File

@ -12,12 +12,12 @@ namespace osu.Game.Overlays.Settings.Sections
public override string Header => "Input";
public override FontAwesome Icon => FontAwesome.fa_keyboard_o;
public InputSection()
public InputSection(KeyBindingOverlay keyConfig)
{
Children = new Drawable[]
{
new MouseSettings(),
new KeyboardSettings(),
new KeyboardSettings(keyConfig),
};
}
}