Files
cours/casse-brique/highscore.py
2025-05-19 09:54:23 +02:00

17 lines
322 B
Python

import sys, pygame
import bouton
from constantes import *
class Highscore:
""" """
def __init__(self):
self.fichier = "highscore.txt"
self.bouton_quitter = bouton.Bouton(
(100, 100, 400, 100), "Retour au Menu", (255, 0, 0)
)
def gereHighScore(self, ecran):
pass