// 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.Localisation; using osu.Game.Graphics.UserInterface; namespace osu.Game.Overlays.Settings { public partial class MultiplierSettingsSlider : SettingsSlider { public MultiplierSettingsSlider() { KeyboardStep = 0.01f; } /// /// A slider bar which adds a "x" to the end of the tooltip string. /// public partial class MultiplierRoundedSliderBar : RoundedSliderBar { public override LocalisableString TooltipText => $"{base.TooltipText}x"; } } }