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

@ -66,5 +66,16 @@ namespace osu.Game.GameModes.Menu
Content.FadeOut(300);
base.OnSuspending(next);
}
protected override void OnResuming(GameMode last)
{
//this is an exit
Game.Scheduler.AddDelayed(delegate
{
Game.Exit();
}, 300);
base.OnResuming(last);
}
}
}