From d359ffe469fa1970d5a08a9ae734bf4bb5e341d5 Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Fri, 28 Apr 2023 11:31:18 +0200 Subject: [PATCH] =?UTF-8?q?WIP:=20t=C3=A2che=203?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wall_is_you.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) mode change 100644 => 100755 wall_is_you.py diff --git a/wall_is_you.py b/wall_is_you.py old mode 100644 new mode 100755 index 67e6ed1..a1000ad --- a/wall_is_you.py +++ b/wall_is_you.py @@ -7,8 +7,10 @@ # # - Aventurier : déplacement tour par tour de salle en salle vers l'intention # - Intention : cible le dragon le plus fort accessible (orgueil) +# +# Doc FLTK : https://antoinemeyer.frama.io/fltk/ -import random +import random, fltk ## VARIABLES DE CONFIGURATION TAILLE_DONJON = 6 @@ -353,9 +355,15 @@ def charger(fichier): print("Erreur : {}".format(e)) return None +## Fonctions graphiques + + + ## Fonction principale def main(): + cree_fenetre(400, 300) + ferme_fenetre() return 0 main()