Actualiser README.md
This commit is contained in:
parent
b4ac0db0f6
commit
f3c34a0957
1 changed files with 28 additions and 1 deletions
29
README.md
29
README.md
|
@ -1,3 +1,30 @@
|
|||
# maze
|
||||
|
||||
Créateur et résolveur de labyrinthes.
|
||||
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
|
||||
```
|
Loading…
Add table
Reference in a new issue