SAE11_2023/SAE_semestre1/terrain.c

17 lines
324 B
C
Raw Normal View History

2023-11-21 12:20:06 +01:00
#include <stdlib.h>
#include <stdio.h>
#include <graph.h>
int AfficherRectangle(){
InitialiserGraphique();
CreerFenetre(10,10,1500,1000);
DessinerRectangle(20,20,1450, 950);
Touche();
FermerGraphique();
}
int main(){
AfficherRectangle();
ChoisirCouleurDessin(104,225,55);
return EXIT_SUCCESS;
}