1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-17 17:22:54 +08:00
osu-lazer/osu.Game/Overlays/Options/EditorOptions.cs

28 lines
850 B
C#
Raw Normal View History

2016-11-03 12:43:05 +08:00
using System;
using OpenTK;
2016-11-03 12:43:05 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Overlays.Options
{
public class EditorOptions : OptionsSection
{
protected override string Header => "Editor";
2016-11-03 12:43:05 +08:00
public EditorOptions()
{
content.Spacing = new Vector2(0, 5);
2016-11-03 12:43:05 +08:00
Children = new Drawable[]
{
new BasicCheckBox { LabelText = "Background video" },
new BasicCheckBox { LabelText = "Always use default skin" },
new BasicCheckBox { LabelText = "Snaking sliders" },
new BasicCheckBox { LabelText = "Hit animations" },
new BasicCheckBox { LabelText = "Follow points" },
new BasicCheckBox { LabelText = "Stacking" },
2016-11-03 12:43:05 +08:00
};
}
}
}