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

@ -125,6 +125,15 @@ namespace osu.Game.GameModes.Menu
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
{
if (args.Key == Key.Escape)
{
if (State == MenuState.Initial)
return false;
State = MenuState.Initial;
return true;
}
osuLogo.TriggerClick(state);
return true;
}