(self)
| 217 | self.hard_game() |
| 218 | |
| 219 | def menu(self): |
| 220 | WIN.fill(bg_color) |
| 221 | WIN.blit(menu_head, menu_head_rect) |
| 222 | easy.draw() |
| 223 | medium.draw() |
| 224 | hard.draw() |
| 225 | cursor.update() |
| 226 | pygame.display.flip() |
| 227 | |
| 228 | def easy_game(self): |
| 229 | global created, FPS, started |
no test coverage detected