2024-10-25 13:08:43 +02:00
|
|
|
#include <graph.h>
|
2024-11-04 13:34:39 +01:00
|
|
|
#include <stdio.h>
|
2024-11-04 16:01:48 +01:00
|
|
|
#include <stdlib.h>
|
2024-10-25 13:08:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "menu.h"
|
2024-11-04 22:11:03 +01:00
|
|
|
#include "grille.h"
|
2024-10-25 13:08:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main (void){
|
2024-10-29 13:32:57 +01:00
|
|
|
InitialiserGraphique();
|
2024-10-29 16:18:02 +01:00
|
|
|
CreerFenetre(10, 10, 600, 300);
|
2024-10-29 13:32:57 +01:00
|
|
|
EffacerEcran(CouleurParNom("white"));
|
2024-11-04 19:36:24 +01:00
|
|
|
Menu();
|
|
|
|
|
while(1){
|
|
|
|
|
}
|
2024-11-04 16:01:48 +01:00
|
|
|
return EXIT_SUCCESS;
|
2024-10-25 13:08:43 +02:00
|
|
|
}
|