2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.KeyBinding
|
|
|
|
|
{
|
|
|
|
|
public class VariantBindingsSubsection : KeyBindingsSubsection
|
|
|
|
|
{
|
2019-11-12 17:45:42 +08:00
|
|
|
|
protected override string Header { get; }
|
2018-04-13 17:19:50 +08: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 17:19:50 +08:00
|
|
|
|
Defaults = rulesetInstance.GetDefaultKeyBindings(variant);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|