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

41 lines
1.4 KiB
C#
Raw Normal View History

2016-11-09 11:38:40 +08:00
using osu.Framework;
2016-11-11 06:40:42 +08:00
using osu.Framework.Allocation;
2016-11-09 11:38:40 +08:00
using osu.Framework.Graphics;
2016-11-03 12:43:05 +08:00
using osu.Framework.Graphics.UserInterface;
2016-11-09 11:38:40 +08:00
using osu.Game.Configuration;
2016-11-03 12:43:05 +08:00
2016-11-11 06:40:42 +08:00
namespace osu.Game.Overlays.Options.Online
{
public class OnlineIntegrationOptions : OptionsSubsection
{
2016-11-09 11:38:40 +08:00
protected override string Header => "Integration";
2016-11-11 06:40:42 +08:00
[Initializer]
private void Load(OsuConfigManager config)
2016-11-09 11:38:40 +08:00
{
2016-11-11 06:40:42 +08:00
Children = new Drawable[]
2016-11-09 11:38:40 +08:00
{
2016-11-11 06:40:42 +08:00
new CheckBoxOption
{
LabelText = "Integrate with Yahoo! status display",
Bindable = config.GetBindable<bool>(OsuConfig.YahooIntegration)
},
new CheckBoxOption
{
LabelText = "Integrate with MSN Live status display",
Bindable = config.GetBindable<bool>(OsuConfig.MsnIntegration)
},
new CheckBoxOption
{
LabelText = "Automatically start osu!direct downloads",
Bindable = config.GetBindable<bool>(OsuConfig.AutomaticDownload)
},
new CheckBoxOption
{
LabelText = "Prefer no-video downloads",
Bindable = config.GetBindable<bool>(OsuConfig.AutomaticDownloadNoVideo)
},
};
}
}
2016-11-03 12:43:05 +08:00
}