osu/osu.Game/Overlays/Options/LanguageOptions.cs

22 lines
660 B
C#
Raw Normal View History

2016-11-03 02:22:34 +00:00
using System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Overlays.Options
{
public class LanguageOptions : OptionsSubsection
{
protected override string Header => "Language";
2016-11-03 02:22:34 +00:00
public LanguageOptions()
{
Children = new Drawable[]
{
new SpriteText { Text = "TODO: Dropdown" },
2016-11-03 02:49:26 +00:00
new BasicCheckBox { LabelText = "Prefer metadata in original language" },
new BasicCheckBox { LabelText = "Use alternative font for chat display" },
2016-11-03 02:22:34 +00:00
};
}
}
}