16 lines
218 B
C
16 lines
218 B
C
|
#include <graph.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char const *argv[])
|
||
|
{
|
||
|
InitialiserGraphique();
|
||
|
CreerFenetre(10,10,480,270);
|
||
|
while(!SourisCliquee());
|
||
|
FermerGraphique();
|
||
|
|
||
|
return 0;
|
||
|
|
||
|
|
||
|
|
||
|
}
|