mirror of
https://github.com/ppy/osu
synced 2025-03-09 04:48:47 +00:00
27 lines
806 B
C#
27 lines
806 B
C#
|
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
|
|||
|
{
|
|||
|
public LanguageOptions()
|
|||
|
{
|
|||
|
Header = "Language";
|
|||
|
Children = new Drawable[]
|
|||
|
{
|
|||
|
new SpriteText { Text = "TODO: Dropdown" },
|
|||
|
new BasicCheckBox
|
|||
|
{
|
|||
|
Children = new[] { new SpriteText { Text = "Prefer metadata in original language" } }
|
|||
|
},
|
|||
|
new BasicCheckBox
|
|||
|
{
|
|||
|
Children = new[] { new SpriteText { Text = "Use alternative font for chat display" } }
|
|||
|
},
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|