mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 04:07:22 +09: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(),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|