osukey/osu.Game/Overlays/Options/EditorOptions.cs
2016-11-03 19:06:22 -04:00

32 lines
1010 B
C#

using System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Overlays.Options
{
public class EditorOptions : OptionsSection
{
public EditorOptions()
{
Header = "Editor";
Children = new Drawable[]
{
new OptionsSubsection
{
Header = "General",
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" },
}
}
};
}
}
}