SAE11_2023/terrain.c

17 lines
275 B
C
Raw Normal View History

2023-12-12 16:07:54 +01:00
#include <stdlib.h>
#include <graph.h>
int main(void) {
couleur c;
InitialiserGraphique();
CreerFenetre(10,10,500,500);
c=CouleurParNom("green");
c=CouleurParComposante(161,232,90);
EffacerEcran(c);
Touche();
FermerGraphique();
return EXIT_SUCCESS;
}