From f3c34a09573b6b11e8707102b0d89e2f44dc3b1d Mon Sep 17 00:00:00 2001 From: Joachim Date: Sun, 20 Apr 2025 14:42:39 +0200 Subject: [PATCH] Actualiser README.md --- README.md | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c8812a2..55993f7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,30 @@ # maze -Créateur et résolveur de labyrinthes. \ No newline at end of file +Créateur et résolveur de labyrinthes. + +## Usage + +Lancez `main.py`. + +## Fonctionnement + +```mermaid +flowchart TD +sv["Liste les sauvegardes"] +ll["Charge un labyrinthe"] +cb["Compression au format binaire (Haussman)"] +start{"Démarrage"} +start --> sv +start --> Validation +start --> ll +Validation --> start +Validation --> Labyrinthe +ll --> Labyrinthe +Labyrinthe --> Textures +Labyrinthe --> Sauvegarde +Labyrinthe --> Resolution +Resolution --> Labyrinthe +Labyrinthe --> start +Sauvegarde --> cb +Resolution --> Pile +``` \ No newline at end of file