mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
22 lines
756 B
C#
22 lines
756 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class OnlineIntegrationOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Integration";
|
|
|
|
public OnlineIntegrationOptions()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new BasicCheckBox { LabelText = "Integrate with Yahoo! status display" },
|
|
new BasicCheckBox { LabelText = "Integrate with MSN Live status display" },
|
|
new BasicCheckBox { LabelText = "Automatically start osu!direct downloads" },
|
|
new BasicCheckBox { LabelText = "Prefer no-video downloads" },
|
|
};
|
|
}
|
|
}
|
|
} |