mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
27 lines
610 B
C#
27 lines
610 B
C#
using System;
|
|
using OpenTK.Graphics;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Framework.Platform;
|
|
using osu.Game.Online.API;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class GeneralOptions : OptionsSection
|
|
{
|
|
protected override string Header => "General";
|
|
|
|
public GeneralOptions()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new LoginOptions(),
|
|
new LanguageOptions(),
|
|
new UpdateOptions(),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|