ajout dans la makefiles grille.c + test pour les fichier.h

This commit is contained in:
ozvann
2024-11-04 19:36:24 +01:00
parent 7c1ad12f47
commit 36dd0ac17a
7 changed files with 25 additions and 19 deletions

9
main.c
View File

@@ -9,15 +9,12 @@
int main (void){
int taillegrille = 0, x = 0;
InitialiserGraphique();
CreerFenetre(10, 10, 600, 300);
EffacerEcran(CouleurParNom("white"));
while(taillegrille == 0){
Menu();
printf("%d %d\n", x, taillegrille);
Menu();
while(1){
GererChoixTaille();
x++;
}
}
return EXIT_SUCCESS;
}