1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 20:37:19 +08:00
osu-lazer/osu.Game/Overlays/Settings/SettingsSlider.cs

27 lines
804 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-14 14:59:23 -05:00
using System;
using osu.Framework.Graphics;
2017-04-21 13:59:04 +02:00
using osu.Framework.Graphics.UserInterface;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Settings
2016-12-07 15:39:21 -05:00
{
public class SettingsSlider<T> : SettingsSlider<T, OsuSliderBar<T>>
where T : struct, IEquatable<T>
2016-12-07 15:39:21 -05:00
{
2017-04-21 13:59:04 +02:00
}
public class SettingsSlider<T, U> : SettingsItem<T>
where T : struct, IEquatable<T>
2017-05-02 18:53:33 +09:00
where U : SliderBar<T>, new()
2017-04-21 13:59:04 +02:00
{
protected override Drawable CreateControl() => new U
2016-12-07 15:39:21 -05:00
{
Margin = new MarginPadding { Top = 5, Bottom = 5 },
RelativeSizeAxes = Axes.X
};
2016-12-07 15:39:21 -05:00
}
2016-12-09 08:18:58 -05:00
}