2016-11-03 12:43:05 +08:00
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
|
|
|
{
|
|
|
|
|
public class OnlineIntegrationOptions : OptionsSubsection
|
|
|
|
|
{
|
2016-11-04 11:01:11 +08:00
|
|
|
|
protected override string Header => "Integration";
|
|
|
|
|
|
2016-11-03 12:43:05 +08:00
|
|
|
|
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" },
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|