1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 14:07:27 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Input/VariantBindingsSubsection.cs

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

25 lines
759 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 17:19:50 +08:00
using osu.Framework.Localisation;
using osu.Game.Rulesets;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.Input
{
public class VariantBindingsSubsection : KeyBindingsSubsection
{
protected override LocalisableString Header { get; }
2018-04-13 17:19:50 +08:00
public VariantBindingsSubsection(RulesetInfo ruleset, int variant)
: base(variant)
{
Ruleset = ruleset;
2018-04-13 17:19:50 +08:00
2017-08-23 13:19:14 +08:00
var rulesetInstance = ruleset.CreateInstance();
2018-04-13 17:19:50 +08:00
2019-11-12 17:45:42 +08:00
Header = rulesetInstance.GetVariantName(variant);
2017-08-23 13:19:14 +08:00
Defaults = rulesetInstance.GetDefaultKeyBindings(variant);
}
}
2018-01-05 19:21:19 +08:00
}