2016-11-08 10:28:06 +08:00
|
|
|
|
using osu.Framework;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-11-03 10:22:34 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Platform;
|
2016-11-03 10:27:39 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2016-11-03 10:22:34 +08:00
|
|
|
|
|
2016-11-08 10:24:41 +08:00
|
|
|
|
namespace osu.Game.Overlays.Options.General
|
2016-11-03 10:22:34 +08:00
|
|
|
|
{
|
|
|
|
|
public class UpdateOptions : OptionsSubsection
|
|
|
|
|
{
|
2016-11-04 11:01:11 +08:00
|
|
|
|
protected override string Header => "Updates";
|
2016-11-09 11:38:40 +08:00
|
|
|
|
|
2016-11-09 07:13:20 +08:00
|
|
|
|
[Initializer]
|
|
|
|
|
private void Load(BasicStorage storage)
|
2016-11-04 10:43:00 +08:00
|
|
|
|
{
|
2016-11-09 07:13:20 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SpriteText { Text = "TODO: Dropdown" },
|
|
|
|
|
new SpriteText { Text = "Your osu! is up to date" }, // TODO: map this to reality
|
|
|
|
|
new OsuButton
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Text = "Open osu! folder",
|
|
|
|
|
Action = () => storage.OpenInNativeExplorer(),
|
|
|
|
|
}
|
|
|
|
|
};
|
2016-11-04 10:43:00 +08:00
|
|
|
|
}
|
2016-11-03 10:22:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|