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

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

37 lines
1.0 KiB
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 System.Diagnostics;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
using osu.Game.Graphics;
using osu.Game.Rulesets;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.Input
{
public class RulesetBindingsSection : SettingsSection
{
public override Drawable CreateIcon() => ruleset?.CreateInstance().CreateIcon() ?? new SpriteIcon
{
Icon = OsuIcon.Hot
};
public override LocalisableString Header => ruleset.Name;
2018-04-13 17:19:50 +08:00
private readonly RulesetInfo ruleset;
2018-04-13 17:19:50 +08:00
public RulesetBindingsSection(RulesetInfo ruleset)
{
this.ruleset = ruleset;
2018-04-13 17:19:50 +08:00
var r = ruleset.CreateInstance();
2018-04-13 17:19:50 +08:00
Debug.Assert(r != null);
foreach (int variant in r.AvailableVariants)
Add(new VariantBindingsSubsection(ruleset, variant));
}
}
2018-01-05 19:21:19 +08:00
}