2022-11-21 16:10:01 +01:00
|
|
|
#include<stdio.h>
|
|
|
|
#include<stdlib.h>
|
|
|
|
#include<graph.h>
|
|
|
|
|
|
|
|
int main(void){
|
2022-11-21 16:19:18 +01:00
|
|
|
InitialiserGraphique();
|
|
|
|
ChoisirEcran(0);
|
|
|
|
CreerFenetre(150,150,500,500);
|
2022-11-21 16:54:55 +01:00
|
|
|
/*FILE* background;
|
|
|
|
background=fopen("Images/background.jpg", "x");
|
|
|
|
FILE*/
|
|
|
|
ChargerImage("Images/background.png",0,0,0,0,500,500);
|
2022-11-21 16:19:18 +01:00
|
|
|
Touche();
|
|
|
|
|
|
|
|
|
|
|
|
FermerGraphique();
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|