Displays the PAUSED message.
(self)
| 63 | self.write("Click 'Restart' or Press 'R'", align="center", font=INSTRUCTION_FONT) |
| 64 | |
| 65 | def display_pause(self): |
| 66 | """Displays the PAUSED message.""" |
| 67 | self.goto(0, 40) |
| 68 | self.color(colors.MESSAGE_COLOR) |
| 69 | self.write("PAUSED", align="center", font=MESSAGE_FONT) |
| 70 | self.goto(0, -40) |
| 71 | self.write("Click 'Resume' or Press 'Space'", align="center", font=INSTRUCTION_FONT) |
| 72 | |
| 73 | def display_start_message(self): |
| 74 | """Displays the welcome message and starting instructions.""" |
no test coverage detected