Add the ability to exit the game using escape.

This commit is contained in:
Dean Herbert
2016-10-07 18:34:37 +09:00
parent b2d899feb5
commit c5ac851ba9
3 changed files with 21 additions and 1 deletions

View File

@ -49,7 +49,7 @@ namespace osu.Game.GameModes.Menu
OnTest = delegate { Push(new TestBrowser()); },
OnExit = delegate {
Game.Scheduler.AddDelayed(delegate {
Game.Host.Exit();
Exit();
}, ButtonSystem.EXIT_DELAY);
},
OnSettings = delegate {