mirror of
https://github.com/Fare-spec/cours.git
synced 2025-12-07 10:50:36 +00:00
17 lines
322 B
Python
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
|