16 lines
238 B
C
16 lines
238 B
C
#include <graph.h>
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
|
|
void GraphJeu(){
|
|
int x = 50, y = 50, xx = 150, yy = 50, i = 0;
|
|
printf("fichier jeu.c taille variable\n");
|
|
for(i = 1; i < 9; i++){
|
|
DessinerSegment(x, y * i, xx * i, yy * i);
|
|
}
|
|
while(1){}
|
|
}
|