suppression fichier inutilisés
This commit is contained in:
parent
92caac105f
commit
5517672ac8
11
action.c
11
action.c
@ -1,11 +0,0 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <graph.h>
|
||||
#include <time.h>
|
||||
#include "images.h"
|
||||
#include "action.h"
|
||||
|
||||
int main(void){
|
||||
tirage_aleatoire();
|
||||
return EXIT_SUCCESS;
|
||||
}
|
12
grillage.c
12
grillage.c
@ -1,12 +0,0 @@
|
||||
#include<stdio.h>
|
||||
#include<stdlib.h>
|
||||
#include<graph.h>
|
||||
|
||||
int graphique(int L,int H){
|
||||
InitialiserGraphique();
|
||||
ChoisirEcran(0);
|
||||
CreerFenetre(150,150,L,H);/*recuperation de L et H via le reste du programme*/
|
||||
Touche();
|
||||
FermerGraphique();
|
||||
return EXIT_SUCCESS;
|
||||
}
|
32
temps.c
32
temps.c
@ -1,32 +0,0 @@
|
||||
#include<stdio.h>
|
||||
#include<stdlib.h>
|
||||
#include<graph.h>
|
||||
#include<math.h>
|
||||
#include "temps.h"
|
||||
//faire une boucle tant que le jeu n'est pas fini
|
||||
//affichage de texte pour afficher le timer
|
||||
int main(void){
|
||||
char tab[50];
|
||||
InitialiserGraphique();
|
||||
CreerFenetre(0,0,1024,576);
|
||||
couleur c=CouleurParComposante(0,0,0);
|
||||
ChoisirCouleurDessin(c);
|
||||
unsigned long temps;
|
||||
unsigned long temps2;
|
||||
temps=Microsecondes();
|
||||
while (1){
|
||||
temps2=(Microsecondes()-temps)/1000000;
|
||||
snprintf(tab,50,"%ld secondes ecoulees",temps2);
|
||||
c=CouleurParComposante(0,0,0);
|
||||
ChoisirCouleurDessin(c);
|
||||
RemplirRectangle(863,83,120,20);
|
||||
c=CouleurParComposante(255,255,255);
|
||||
ChoisirCouleurDessin(c);
|
||||
EcrireTexte(867,100,tab,0);
|
||||
if(SourisCliquee()){
|
||||
printf("x %d y %d",_X,_Y);
|
||||
}
|
||||
}
|
||||
FermerGraphique();
|
||||
return EXIT_SUCCESS;
|
||||
}
|
Loading…
Reference in New Issue
Block a user