2019-01-24 17:43:03 +09:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Input.Bindings;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
2021-07-20 21:18:24 -07:00
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
2019-05-27 01:36:07 +09:00
|
|
|
public class KeyBindingPanel : SettingsSubPanel
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
|
|
|
protected override Drawable CreateHeader() => new SettingsHeader("key configuration", "Customise your keys!");
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
|
|
|
private void load(RulesetStore rulesets, GlobalActionContainer global)
|
|
|
|
{
|
|
|
|
AddSection(new GlobalKeyBindingsSection(global));
|
|
|
|
|
|
|
|
foreach (var ruleset in rulesets.AvailableRulesets)
|
|
|
|
AddSection(new RulesetBindingsSection(ruleset));
|
2019-02-03 14:34:04 +03:00
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
}
|
|
|
|
}
|