Displays the Game Over message and instructions.
(self)
| 55 | self.update_scoreboard() |
| 56 | |
| 57 | def game_over(self): |
| 58 | """Displays the Game Over message and instructions.""" |
| 59 | self.goto(0, 40) |
| 60 | self.color(colors.GAME_OVER_COLOR) |
| 61 | self.write("GAME OVER", align="center", font=MESSAGE_FONT) |
| 62 | self.goto(0, -40) |
| 63 | self.write("Click 'Restart' or Press 'R'", align="center", font=INSTRUCTION_FONT) |
| 64 | |
| 65 | def display_pause(self): |
| 66 | """Displays the PAUSED message.""" |