1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 22:27:50 +08:00
osu-lazer/osu.Game/Overlays/Options/OffsetAdjustmentOptions.cs
2016-11-03 23:01:11 -04:00

25 lines
670 B
C#

using System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Options
{
public class OffsetAdjustmentOptions : OptionsSubsection
{
protected override string Header => "Offset Adjustment";
public OffsetAdjustmentOptions()
{
Children = new Drawable[]
{
new SpriteText { Text = "Universal Offset: TODO slider" },
new OsuButton
{
RelativeSizeAxes = Axes.X,
Text = "Offset wizard"
}
};
}
}
}