Snake en Python
Find a file
2025-04-20 15:01:05 +02:00
data init 2025-04-20 14:48:34 +02:00
LICENSE Initial commit 2025-04-20 14:45:35 +02:00
main.py init 2025-04-20 14:48:34 +02:00
README.md Actualiser README.md 2025-04-20 15:01:05 +02:00

Snake

Jeu snake en Python.

Usage

Lancez main.py

Fonctionnement

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