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

32 lines
950 B
C#
Raw Normal View History

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
namespace osu.Game.Overlays.Options.General
{
public class UpdateOptions : OptionsSubsection
{
protected override string Header => "Updates";
[BackgroundDependencyLoader]
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(),
}
};
}
}
}