1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 03:17:18 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
870 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 18:19:50 +09:00
2017-02-07 13:52:19 +09:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
2021-08-11 15:25:08 +08:00
using osu.Framework.Localisation;
using osu.Game.Localisation;
using osu.Game.Overlays.Settings.Sections.General;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Overlays.Settings.Sections
2017-02-07 13:52:19 +09:00
{
public class GeneralSection : SettingsSection
2017-02-07 13:52:19 +09:00
{
2021-08-11 15:25:08 +08:00
public override LocalisableString Header => GeneralSettingsStrings.GeneralSectionHeader;
public override Drawable CreateIcon() => new SpriteIcon
{
Icon = FontAwesome.Solid.Cog
};
2018-04-13 18:19:50 +09:00
2017-02-07 13:52:19 +09:00
public GeneralSection()
{
Children = new Drawable[]
{
new LanguageSettings(),
new UpdateSettings(),
2017-02-07 13:52:19 +09:00
};
}
}
}