Rename OsuSliderBar.cs as NormalSliderBar.cs

This commit is contained in:
mk56-spn
2023-01-26 12:12:56 +01:00
parent 9677a8e3b3
commit 3988131475
19 changed files with 27 additions and 27 deletions

View File

@ -21,7 +21,7 @@ namespace osu.Game.Graphics.UserInterface
/// </summary>
public partial class ExpandableSlider<T, TSlider> : CompositeDrawable, IExpandable, IHasCurrentValue<T>
where T : struct, IEquatable<T>, IComparable<T>, IConvertible
where TSlider : OsuSliderBar<T>, new()
where TSlider : NormalSliderBar<T>, new()
{
private readonly OsuSpriteText label;
private readonly TSlider slider;
@ -130,7 +130,7 @@ namespace osu.Game.Graphics.UserInterface
/// <summary>
/// An <see cref="IExpandable"/> implementation for the UI slider bar control.
/// </summary>
public partial class ExpandableSlider<T> : ExpandableSlider<T, OsuSliderBar<T>>
public partial class ExpandableSlider<T> : ExpandableSlider<T, NormalSliderBar<T>>
where T : struct, IEquatable<T>, IComparable<T>, IConvertible
{
}