mirror of
https://github.com/ppy/osu.git
synced 2024-11-18 01:02:55 +08:00
21 lines
654 B
C#
21 lines
654 B
C#
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options.General
|
|
{
|
|
public class LanguageOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Language";
|
|
|
|
public LanguageOptions()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new SpriteText { Text = "TODO: Dropdown" },
|
|
new BasicCheckBox { LabelText = "Prefer metadata in original language" },
|
|
new BasicCheckBox { LabelText = "Use alternative font for chat display" },
|
|
};
|
|
}
|
|
}
|
|
} |