This commit is contained in:
2024-11-12 14:43:39 +01:00
parent 36d1587799
commit 5cccef1907
2 changed files with 5 additions and 26 deletions

5
jeu.c
View File

@@ -6,6 +6,11 @@
void GraphJeu(){
int x = 50, y = 50, xx = 150, yy = 50, i = 0;
printf("fichier jeu.c taille variable\n");
DessinerSegment(x, y, xx, yy);
for(i = 0; i < 9; i++){
DessinerSegment(x, y * i, xx * i, yy * i);
}
while(1){}
}