From 5435917d0094190584fcee8a0c4c300362b8183e Mon Sep 17 00:00:00 2001 From: morinl Date: Mon, 21 Nov 2022 16:02:49 +0100 Subject: [PATCH] timer --- temps.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/temps.c b/temps.c index cceda7c..beadb03 100644 --- a/temps.c +++ b/temps.c @@ -1,11 +1,17 @@ #include #include #include +#include //faire une boucle tant que le jeu n'est pas fini //affichage de texte pour afficher le timer -int temps(void){ - int temps; - int temps2; +int timer(void){ + InitialiserGraphique(); + unsigned long temps; + unsigned long temps2; temps=Microsecondes(); - temps2=temps/1000; + while (ToucheEnAttente(XK_Escape)!=1){ + temps2=(Microsecondes()-temps)/1000000; + printf("temps:%lu secondes écoulées\n",temps2); + } + FermerGraphique(); } \ No newline at end of file