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
|
|
|
|
|
2021-07-15 12:50:34 +09:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
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
|
|
|
|
{
|
|
|
|
|
public class VariantBindingsSubsection : KeyBindingsSubsection
|
|
|
|
|
{
|
2021-07-15 12:50:34 +09:00
|
|
|
|
protected override LocalisableString Header { get; }
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
public VariantBindingsSubsection(RulesetInfo ruleset, int variant)
|
|
|
|
|
: base(variant)
|
|
|
|
|
{
|
|
|
|
|
Ruleset = ruleset;
|
|
|
|
|
|
|
|
|
|
var rulesetInstance = ruleset.CreateInstance();
|
|
|
|
|
|
2019-11-12 17:45:42 +08:00
|
|
|
|
Header = rulesetInstance.GetVariantName(variant);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
Defaults = rulesetInstance.GetDefaultKeyBindings(variant);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|