16 lines
296 B
C
16 lines
296 B
C
#include <graph.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
#include "jeu.h"
|
|
|
|
|
|
|
|
int main (void){
|
|
InitialiserGraphique();
|
|
CreerFenetre(50, 50, 700, 500); /* Initialise la fenetre puis lance le programme jeu.c qui lancera d'autre programme */
|
|
EffacerEcran(CouleurParNom("white"));
|
|
Jeu();
|
|
return EXIT_SUCCESS;
|
|
}
|