2024-10-25 13:08:43 +02:00
|
|
|
#include <graph.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "menu.h"
|
2024-10-29 16:18:02 +01:00
|
|
|
#include "taille.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"));
|
|
|
|
|
Menu();
|
2024-10-25 13:08:43 +02:00
|
|
|
while(1){
|
2024-10-29 16:18:02 +01:00
|
|
|
GererChoixTaille();
|
2024-10-25 13:08:43 +02:00
|
|
|
}
|
|
|
|
|
}
|