mirror of
https://github.com/ppy/osu
synced 2025-02-04 20:32:12 +00:00
22 lines
579 B
C#
22 lines
579 B
C#
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options.Online
|
|
{
|
|
public class OnlineSection : OptionsSection
|
|
{
|
|
protected override string Header => "Online";
|
|
public override FontAwesome Icon => FontAwesome.fa_globe;
|
|
|
|
public OnlineSection()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new InGameChatOptions(),
|
|
new PrivacyOptions(),
|
|
new NotificationsOptions(),
|
|
new OnlineIntegrationOptions(),
|
|
};
|
|
}
|
|
}
|
|
} |