1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 01:57:19 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
877 B
C#
Raw Normal View History

// 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.Localisation;
using osu.Game.Rulesets;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Overlays.Settings.Sections.Input
{
public partial class KeyBindingPanel : SettingsSubPanel
{
protected override Drawable CreateHeader() => new SettingsHeader(InputSettingsStrings.KeyBindingPanelHeader, InputSettingsStrings.KeyBindingPanelDescription);
2018-04-13 18:19:50 +09:00
[BackgroundDependencyLoader(permitNulls: true)]
private void load(RulesetStore rulesets)
{
AddSection(new GlobalKeyBindingsSection());
2018-04-13 18:19:50 +09:00
2017-10-16 17:02:31 +09:00
foreach (var ruleset in rulesets.AvailableRulesets)
AddSection(new RulesetBindingsSection(ruleset));
}
}
2018-01-05 20:21:19 +09:00
}