timer
This commit is contained in:
parent
6d9f65b970
commit
5435917d00
14
temps.c
14
temps.c
@ -1,11 +1,17 @@
|
||||
#include<stdio.h>
|
||||
#include<stdlib.h>
|
||||
#include<graph.h>
|
||||
#include<math.h>
|
||||
//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();
|
||||
}
|
Loading…
Reference in New Issue
Block a user