// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Game.Rulesets; namespace osu.Game.Overlays.BeatmapSet { public class BeatmapSetHeader : OverlayHeader { public readonly Bindable Ruleset = new Bindable(); public BeatmapRulesetSelector RulesetSelector { get; private set; } protected override OverlayTitle CreateTitle() => new BeatmapHeaderTitle(); protected override Drawable CreateTitleContent() => RulesetSelector = new BeatmapRulesetSelector { Current = Ruleset }; private class BeatmapHeaderTitle : OverlayTitle { public BeatmapHeaderTitle() { Title = "beatmap info"; IconTexture = "Icons/changelog"; } } } }