13 lines
227 B
C
13 lines
227 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <graph.h>
|
|
|
|
int main(void)
|
|
{
|
|
if(Touche() == "XK_Left")
|
|
{
|
|
EcrireTexte(100,200,"Touché !",2);
|
|
ToucheEnAttente();
|
|
}
|
|
return EXIT_SUCCESS;
|
|
} |