(x, y)
| 193 | font1 = pygame.font.Font("freesansbold.ttf", 25) |
| 194 | |
| 195 | def show_score(x, y): |
| 196 | score = font1.render("SCORE: " + str(score_value), True, (255, 0, 0)) |
| 197 | screen.blit(score, (x, y)) |
| 198 | |
| 199 | # highscore part |
| 200 | with open("highscore.txt", "r") as f: |