1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 12:07:27 +08:00
osu-lazer/osu.Game/Overlays/Options/UpdateOptions.cs

40 lines
1.1 KiB
C#
Raw Normal View History

2016-11-03 10:22:34 +08:00
using System;
using OpenTK.Graphics;
2016-11-04 10:43:00 +08:00
using osu.Framework;
2016-11-03 10:22:34 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
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
namespace osu.Game.Overlays.Options
{
public class UpdateOptions : OptionsSubsection
{
2016-11-04 10:43:00 +08:00
private BasicStorage storage;
public UpdateOptions()
2016-11-03 10:22:34 +08:00
{
Header = "Updates";
Children = new Drawable[]
{
new SpriteText { Text = "TODO: Dropdown" },
new SpriteText { Text = "Your osu! is up to date" }, // TODO: map this to reality
2016-11-03 10:27:39 +08:00
new OsuButton
2016-11-03 10:22:34 +08:00
{
RelativeSizeAxes = Axes.X,
Text = "Open osu! folder",
2016-11-04 10:43:00 +08:00
Action = () => storage?.OpenInNativeExplorer(),
2016-11-03 10:22:34 +08:00
}
};
}
2016-11-04 10:43:00 +08:00
protected override void Load(BaseGame game)
{
base.Load(game);
this.storage = game.Host.Storage;
}
2016-11-03 10:22:34 +08:00
}
}