1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 22:22:54 +08:00
osu-lazer/osu.Game/Overlays/Options/Graphics/LayoutOptions.cs

25 lines
858 B
C#
Raw Normal View History

2016-11-08 10:28:06 +08:00
using osu.Framework.Graphics;
2016-11-03 10:49:26 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
2016-11-08 10:24:41 +08:00
namespace osu.Game.Overlays.Options.Graphics
2016-11-03 10:49:26 +08:00
{
public class LayoutOptions : OptionsSubsection
{
protected override string Header => "Layout";
2016-11-03 10:49:26 +08:00
public LayoutOptions()
{
Children = new Drawable[]
{
new SpriteText { Text = "Resolution: TODO dropdown" },
new BasicCheckBox { LabelText = "Fullscreen mode" },
new BasicCheckBox { LabelText = "Letterboxing" },
new SpriteText { Text = "Horizontal position" },
new SpriteText { Text = "TODO: slider" },
new SpriteText { Text = "Vertical position" },
new SpriteText { Text = "TODO: slider" },
};
}
}
}