2022-11-15 17:25:25 +01:00
|
|
|
#include<stdio.h>
|
|
|
|
#include<stdlib.h>
|
|
|
|
#include<graph.h>
|
|
|
|
|
2022-11-21 15:38:08 +01:00
|
|
|
int graphique(int L,int H){
|
2022-11-15 17:25:25 +01:00
|
|
|
InitialiserGraphique();
|
2022-11-21 15:38:08 +01:00
|
|
|
ChoisirEcran(0);
|
2022-11-21 15:41:40 +01:00
|
|
|
CreerFenetre(150,150,L,H);/*recuperation de L et H via le reste du programme*/
|
2022-11-21 15:38:08 +01:00
|
|
|
Touche();
|
|
|
|
FermerGraphique();
|
|
|
|
return EXIT_SUCCESS;
|
2022-11-15 17:25:25 +01:00
|
|
|
}
|