Actualiser README.md
This commit is contained in:
parent
c3cac03103
commit
0d506ae052
1 changed files with 26 additions and 1 deletions
27
README.md
27
README.md
|
@ -1,3 +1,28 @@
|
|||
# Snake
|
||||
|
||||
Snake en Python
|
||||
Jeu snake en Python.
|
||||
|
||||
## Usage
|
||||
|
||||
Lancez `main.py`
|
||||
|
||||
## Fonctionnement
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
sc["Sauvegarde du score"]
|
||||
fc["Feedback des effets"]
|
||||
main["Démarrage"]
|
||||
init["Initialisation"]
|
||||
main --> Difficulté
|
||||
Difficulté --> init
|
||||
init --> Jeu
|
||||
Jeu --> Pomme
|
||||
Jeu --> Serpent
|
||||
Jeu --> sc
|
||||
Pomme --> Effet
|
||||
Serpent --> Contrôles
|
||||
Serpent --> fc
|
||||
Serpent --> Collisions
|
||||
Jeu --> main
|
||||
```
|
Loading…
Add table
Reference in a new issue