SAE11_2023/JEUX_SERPENT/main.c

13 lines
219 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();
FermerGraphique();
return EXIT_SUCCESS;
2023-11-20 16:39:52 +01:00
}