(x, y)
| 201 | highscore = f.read() |
| 202 | |
| 203 | def show_highscore(x, y): |
| 204 | Hiscore_text = font1.render("HISCORE :" + str(highscore), True, (255, 0, 0)) |
| 205 | screen.blit(Hiscore_text, (x, y)) |
| 206 | pygame.display.update() |
| 207 | |
| 208 | ###### creating our game over function ####### |
| 209 |