mirror of
https://github.com/ppy/osu.git
synced 2024-11-17 15:12:54 +08:00
20 lines
459 B
C#
20 lines
459 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class OnlineOptions : OptionsSection
|
|
{
|
|
protected override string Header => "Online";
|
|
|
|
public OnlineOptions()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new AlertsPrivacyOptions(),
|
|
new OnlineIntegrationOptions(),
|
|
new InGameChatOptions(),
|
|
};
|
|
}
|
|
}
|
|
} |