16 lines
298 B
C
16 lines
298 B
C
#include<stdlib.h>
|
|
#include<graph.h>
|
|
|
|
int main()
|
|
{
|
|
//création de la fenêtre de jeu
|
|
|
|
InitialiserGraphique();
|
|
CreerFenetre(100, 180, 1200, 800);
|
|
Touche();
|
|
couleur c;
|
|
c=CouleurParComposante(255,0,0);
|
|
ChoisirCouleurDessin(c);
|
|
FermerGraphique();
|
|
return EXIT_SUCCESS;
|
|
} |