1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 02:22:59 +08:00

Formatting.

This commit is contained in:
Dean Herbert 2017-05-02 18:53:33 +09:00
parent d4045ee2c0
commit f9de733128

View File

@ -12,11 +12,14 @@ using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Options namespace osu.Game.Overlays.Options
{ {
public class OptionSlider<T> : OptionSlider<T, OsuSliderBar<T>> where T: struct public class OptionSlider<T> : OptionSlider<T, OsuSliderBar<T>>
where T : struct
{ {
} }
public class OptionSlider<T, U> : FillFlowContainer where T : struct where U : SliderBar<T>, new() public class OptionSlider<T, U> : FillFlowContainer
where T : struct
where U : SliderBar<T>, new()
{ {
private readonly SliderBar<T> slider; private readonly SliderBar<T> slider;
private readonly SpriteText text; private readonly SpriteText text;