1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 23:37:20 +08:00
2016-11-08 23:36:06 -05:00

23 lines
521 B
C#

using osu.Framework.Graphics;
using osu.Game.Graphics;
namespace osu.Game.Overlays.Options.General
{
public class GeneralSection : OptionsSection
{
public override string Header => "General";
public override FontAwesome Icon => FontAwesome.fa_gear;
public GeneralSection()
{
Children = new Drawable[]
{
new LoginOptions(),
new LanguageOptions(),
new UpdateOptions(),
};
}
}
}