19 lines
224 B
C
19 lines
224 B
C
#include <graph.h>
|
|
|
|
|
|
#include "menu.h"
|
|
#include "taille.h"
|
|
|
|
|
|
|
|
|
|
int main (void){
|
|
InitialiserGraphique();
|
|
CreerFenetre(10, 10, 600, 300);
|
|
EffacerEcran(CouleurParNom("white"));
|
|
Menu();
|
|
while(1){
|
|
GererChoixTaille();
|
|
}
|
|
}
|