16 lines
278 B
C
16 lines
278 B
C
#include<stdlib.h>
|
|
#include<graph.h>
|
|
#include<stdio.h>
|
|
|
|
int main()
|
|
{
|
|
InitialiserGraphique();
|
|
CreerFenetre(10,10,480,270);
|
|
int touche;
|
|
while(!ToucheEnAttente){}
|
|
touche=Touche();
|
|
if(touche==0xff80){
|
|
FermerGraphique();
|
|
}
|
|
return EXIT_SUCCESS;
|
|
} |