mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 10:17:32 +08:00
23 lines
528 B
C#
23 lines
528 B
C#
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options.General
|
|
{
|
|
public class GeneralSection : OptionsSection
|
|
{
|
|
protected override string Header => "General";
|
|
public override FontAwesome Icon => FontAwesome.fa_gear;
|
|
|
|
public GeneralSection()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new LoginOptions(),
|
|
new LanguageOptions(),
|
|
new UpdateOptions(),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|