SAE11_2021/temps.c

17 lines
468 B
C
Raw Normal View History

#include<stdio.h>
#include<stdlib.h>
#include<graph.h>
2022-11-21 16:02:49 +01:00
#include<math.h>
//faire une boucle tant que le jeu n'est pas fini
//affichage de texte pour afficher le timer
2022-11-21 16:02:49 +01:00
int timer(void){
InitialiserGraphique();
unsigned long temps;
unsigned long temps2;
temps=Microsecondes();
2022-11-21 16:02:49 +01:00
while (ToucheEnAttente(XK_Escape)!=1){
temps2=(Microsecondes()-temps)/1000000;
printf("temps:%lu secondes écoulées\n",temps2);
}
FermerGraphique();
}