SAE11_2023/JEUX_SERPENT/main.c

16 lines
298 B
C
Raw Normal View History

2023-11-21 13:28:42 +01:00
#include<stdlib.h>
#include<graph.h>
int main()
{
//création de la fenêtre de jeu
InitialiserGraphique();
CreerFenetre(100, 180, 1200, 800);
Touche();
2023-11-21 13:43:09 +01:00
couleur c;
c=CouleurParComposante(255,0,0);
ChoisirCouleurDessin(c);
2023-11-21 13:28:42 +01:00
FermerGraphique();
return EXIT_SUCCESS;
2023-11-20 16:39:52 +01:00
}