2016-12-06 09:56:20 +00:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2016-11-03 04:26:49 +00:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
2016-11-08 02:24:41 +00:00
|
|
|
|
namespace osu.Game.Overlays.Options.Audio
|
2016-11-03 04:26:49 +00:00
|
|
|
|
{
|
|
|
|
|
public class OffsetAdjustmentOptions : OptionsSubsection
|
|
|
|
|
{
|
2016-11-04 03:01:11 +00:00
|
|
|
|
protected override string Header => "Offset Adjustment";
|
2016-11-09 03:38:40 +00:00
|
|
|
|
|
2016-11-03 04:26:49 +00:00
|
|
|
|
public OffsetAdjustmentOptions()
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SpriteText { Text = "Universal Offset: TODO slider" },
|
|
|
|
|
new OsuButton
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Text = "Offset wizard"
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|