Update method there are a couple of lines of code that tell the game to exit when the
player presses the Back button on his gamepad:
if (GamePad.GetState(PlayerIndex.One).Buttons.Back ==
ButtonState.Pressed)
this.Exit( );
This is how the game shuts down on the Xbox 360 or in Windows when an Xbox 360
controller is being used (otherwise, you can click the red X on the window to close it
or use Alt-F4 to shut down the application).
As mentioned earlier, the Update method is where you update everything to do with the
game. You can update the positions of items on the screen, scores, animation sequences
and so on. You’d also check for user input, detect collisions, and adjust any artificial intelligence (AI) algorithms in your Update method.