2019-01-24 08:43:03 +00: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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2019-03-27 10:29:27 +00:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2021-08-12 03:57:51 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Localisation;
|
2018-10-22 20:57:37 +00:00
|
|
|
|
using osu.Game.Overlays.Settings.Sections.Online;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections
|
|
|
|
|
{
|
|
|
|
|
public class OnlineSection : SettingsSection
|
|
|
|
|
{
|
2021-08-12 03:57:51 +00:00
|
|
|
|
public override LocalisableString Header => OnlineSettingsStrings.OnlineSectionHeader;
|
2020-04-25 18:35:46 +00:00
|
|
|
|
|
|
|
|
|
public override Drawable CreateIcon() => new SpriteIcon
|
|
|
|
|
{
|
|
|
|
|
Icon = FontAwesome.Solid.GlobeAsia
|
|
|
|
|
};
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
public OnlineSection()
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2019-12-15 23:45:33 +00:00
|
|
|
|
new WebSettings(),
|
2021-05-26 06:59:29 +00:00
|
|
|
|
new AlertsAndPrivacySettings(),
|
2020-12-30 05:29:51 +00:00
|
|
|
|
new IntegrationSettings()
|
2018-04-13 09:19:50 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|