mirror of
https://github.com/Fare-spec/cours.git
synced 2025-12-07 10:50:36 +00:00
8 lines
151 B
Python
Executable File
8 lines
151 B
Python
Executable File
##########Definitions des constantes
|
|
# Taille de la fenetre
|
|
LARGEUR_ECRAN = 600
|
|
HAUTEUR_ECRAN = 800
|
|
# Couleur
|
|
BLANC = (255, 255, 255)
|
|
NOIR = (0, 0, 0)
|