mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
de46f3ab07
Enforces at CI.
27 lines
804 B
C#
27 lines
804 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Settings
|
|
{
|
|
public class SettingsSlider<T> : SettingsSlider<T, OsuSliderBar<T>>
|
|
where T : struct, IEquatable<T>
|
|
{
|
|
}
|
|
|
|
public class SettingsSlider<T, U> : SettingsItem<T>
|
|
where T : struct, IEquatable<T>
|
|
where U : SliderBar<T>, new()
|
|
{
|
|
protected override Drawable CreateControl() => new U
|
|
{
|
|
Margin = new MarginPadding { Top = 5, Bottom = 5 },
|
|
RelativeSizeAxes = Axes.X
|
|
};
|
|
}
|
|
}
|