The StartMenuController has a command for exiting the game but it is currently empty. Need to implement the method so it actually closes the game. StartMenuController: ``` public void exitGame(){ //TO-DO: exit the game using world.gameOver(); } ```
The StartMenuController has a command for exiting the game but it is currently empty. Need to implement the method so it actually closes the game.
StartMenuController: