Leaderboard implemted +-

This commit is contained in:
IM23a-bachmannj2
2025-02-04 10:57:54 +01:00
parent 16c1ef8dd6
commit 2369c8b2da
5 changed files with 26 additions and 6 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ class Game:
draw_text(self.screen, f'Score: {settings.game_score}', get_font(20), self.width - 150, 100, (255, 255, 255))
# Render surfaces
self.screen.blit(self.grid_surface, (0, 0))
self.screen.blit(self.grid_surface, (settings.width // 2 - 150, 50))
self.screen.blit(self.next_surface, (self.width - 150, 200))
self.screen.blit(self.hold_surface, (self.width - 150, 400))