diff --git a/SAE_semestre1/src/main.c b/SAE_semestre1/src/main.c index 81fb7ca..47e896c 100644 --- a/SAE_semestre1/src/main.c +++ b/SAE_semestre1/src/main.c @@ -7,16 +7,13 @@ #include "../fichier.h/time.h" #include "../fichier.h/main.h" #include "../fichier.h/menu.h" - #define CYCLE 100000L #define DELAI_MILLISECONDES 100 - void attente(int milliseconds) { clock_t start_time = clock(); while ((clock() - start_time) * 1000 / CLOCKS_PER_SEC < milliseconds) { } } - int lancer_jeu(){ int go_on=1; int pause = 1; @@ -75,4 +72,3 @@ int main(void){ FermerGraphique(); return EXIT_SUCCESS; } -