1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-18 00:53:20 +08:00
osu-lazer/osu.Game/Overlays/Options/General/LanguageOptions.cs

33 lines
1.0 KiB
C#
Raw Normal View History

2016-11-08 11:37:21 +08:00
using osu.Framework;
using osu.Framework.Graphics;
2016-11-03 10:22:34 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Allocation;
2016-11-09 11:38:40 +08:00
using osu.Game.Configuration;
2016-11-03 10:22:34 +08:00
namespace osu.Game.Overlays.Options.General
{
public class LanguageOptions : OptionsSubsection
{
protected override string Header => "Language";
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
2016-11-09 07:13:20 +08:00
Children = new Drawable[]
{
new SpriteText { Text = "TODO: Dropdown" },
new CheckBoxOption
{
LabelText = "Prefer metadata in original language",
Bindable = config.GetBindable<bool>(OsuConfig.ShowUnicode)
},
new CheckBoxOption
{
LabelText = "Use alternative font for chat display",
Bindable = config.GetBindable<bool>(OsuConfig.AlternativeChatFont)
},
};
}
}
}