2020-11-30 05:00:15 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-11-30 05:00:15 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2021-08-12 10:48:29 +08:00
|
|
|
using osu.Framework.Localisation;
|
|
|
|
using osu.Game.Localisation;
|
2020-11-30 05:00:15 +08:00
|
|
|
using osu.Game.Overlays.Settings.Sections.UserInterface;
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections
|
|
|
|
{
|
|
|
|
public partial class UserInterfaceSection : SettingsSection
|
|
|
|
{
|
2021-08-12 10:48:29 +08:00
|
|
|
public override LocalisableString Header => UserInterfaceStrings.UserInterfaceSectionHeader;
|
2020-11-30 05:00:15 +08:00
|
|
|
|
|
|
|
public override Drawable CreateIcon() => new SpriteIcon
|
|
|
|
{
|
|
|
|
Icon = FontAwesome.Solid.LayerGroup
|
|
|
|
};
|
|
|
|
|
|
|
|
public UserInterfaceSection()
|
|
|
|
{
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new GeneralSettings(),
|
|
|
|
new MainMenuSettings(),
|
|
|
|
new SongSelectSettings()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|