Ajout Pastille

This commit is contained in:
2023-11-21 18:15:28 +01:00
parent 74c5f9d97e
commit fdaadce136
3 changed files with 66 additions and 4 deletions

13
touche.c Normal file
View File

@@ -0,0 +1,13 @@
#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;
}