22 lines
336 B
C
22 lines
336 B
C
#include <graph.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
#include "menu.h"
|
|
#include "jeu.h"
|
|
|
|
|
|
|
|
int main (void){
|
|
InitialiserGraphique();
|
|
CreerFenetre(50, 50, 700, 500);
|
|
EffacerEcran(CouleurParNom("white"));
|
|
Menu();
|
|
FermerGraphique();
|
|
InitialiserGraphique();
|
|
CreerFenetre(50, 50, 700, 500);
|
|
GraphJeu();
|
|
return EXIT_SUCCESS;
|
|
}
|