1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 00:27:26 +08:00
osu-lazer/osu.Game/Overlays/Options/Online/OnlineIntegrationOptions.cs

21 lines
749 B
C#
Raw Normal View History

2016-11-08 10:28:06 +08:00
using osu.Framework.Graphics;
2016-11-03 12:43:05 +08:00
using osu.Framework.Graphics.UserInterface;
2016-11-08 10:24:41 +08:00
namespace osu.Game.Overlays.Options.Online
2016-11-03 12:43:05 +08:00
{
public class OnlineIntegrationOptions : OptionsSubsection
{
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" },
};
}
}
}