From 0d8ae158a1c36a2f4557d6e884f57caa4106172c Mon Sep 17 00:00:00 2001 From: SAE11_2023 Date: Tue, 21 Nov 2023 13:28:42 +0100 Subject: [PATCH] =?UTF-8?q?cr=C3=A9ation=20fenetre?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- JEUX_SERPENT/main.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/JEUX_SERPENT/main.c b/JEUX_SERPENT/main.c index c1dc62e..bba3db1 100644 --- a/JEUX_SERPENT/main.c +++ b/JEUX_SERPENT/main.c @@ -1,5 +1,13 @@ -int main(void){ - - printf("test"); - return 0; +#include +#include + +int main() +{ + //crĂ©ation de la fenĂȘtre de jeu + + InitialiserGraphique(); + CreerFenetre(100, 180, 1200, 800); + Touche(); + FermerGraphique(); + return EXIT_SUCCESS; } \ No newline at end of file