17 lines
318 B
C
17 lines
318 B
C
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
#include<graph.h>
|
|
|
|
int main(void){
|
|
InitialiserGraphique();
|
|
ChoisirEcran(0);
|
|
CreerFenetre(150,150,500,500);
|
|
FILE* background;
|
|
background=fopen("Images/background.jpg", "r");
|
|
void ChargerImageFond(char *background);
|
|
Touche();
|
|
|
|
|
|
FermerGraphique();
|
|
return EXIT_SUCCESS;
|
|
} |