2024-10-25 13:08:43 +02:00
|
|
|
#include <graph.h>
|
|
|
|
|
|
2024-11-11 14:47:28 +01:00
|
|
|
#include "jeu.h"
|
|
|
|
|
|
2024-10-25 13:08:43 +02:00
|
|
|
int main (void){
|
2024-11-18 16:15:25 +01:00
|
|
|
int victoire = 0;
|
2024-10-29 13:32:57 +01:00
|
|
|
InitialiserGraphique();
|
2024-11-12 23:57:03 +01:00
|
|
|
CreerFenetre(50, 50, 700, 500); /* Initialise la fenetre puis lance le programme jeu.c qui lancera d'autre programme */
|
2024-10-29 13:32:57 +01:00
|
|
|
EffacerEcran(CouleurParNom("white"));
|
2024-11-18 16:15:25 +01:00
|
|
|
victoire = Jeu();
|
2024-10-25 13:08:43 +02:00
|
|
|
}
|