13 lines
219 B
C
13 lines
219 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();
|
|
FermerGraphique();
|
|
return EXIT_SUCCESS;
|
|
} |