From 85409dab44e9d2b082e14698d5c3614009b765d1 Mon Sep 17 00:00:00 2001 From: JUDE CHRIST AISSI Date: Fri, 22 Dec 2023 15:20:04 +0100 Subject: [PATCH] ajout main.c manquant --- SAE_semestre1/src/main.c | 4 ---- 1 file changed, 4 deletions(-) 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; } -