mirror of
https://github.com/osukey/osukey.git
synced 2025-05-04 13:17:22 +09:00
21 lines
632 B
C#
21 lines
632 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 { LabelText = "Prefer metadata in original language" },
|
|
new BasicCheckBox { LabelText = "Use alternative font for chat display" },
|
|
};
|
|
}
|
|
}
|
|
} |