1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:07:24 +08:00
osu-lazer/osu.Game/Overlays/KeyBinding/VariantBindingsSubsection.cs

24 lines
701 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.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);
}
}
}