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-08 11:15:48 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2016-11-09 11:38:40 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2016-11-08 11:15:48 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Options.Online
|
|
|
|
|
{
|
|
|
|
|
public class PrivacyOptions : OptionsSubsection
|
|
|
|
|
{
|
|
|
|
|
protected override string Header => "Privacy";
|
|
|
|
|
|
2016-11-11 06:40:42 +08:00
|
|
|
|
[Initializer]
|
|
|
|
|
private void Load(OsuConfigManager config)
|
2016-11-08 11:15:48 +08:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2016-11-11 06:40:42 +08:00
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Share your city location with others",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.DisplayCityLocation)
|
|
|
|
|
},
|
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Allow multiplayer game invites from all users",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.AllowPublicInvites)
|
|
|
|
|
},
|
2016-11-08 11:15:48 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|