From f61f9aa60d12fbeedd61bd6bb5ad367f756f018b Mon Sep 17 00:00:00 2001 From: gantchou koffi <koffi.gantchou.etu@univ-lille.fr> Date: Sun, 20 Apr 2025 10:29:34 +0200 Subject: [PATCH] depot de 20/04/25 --- projet_rush_hour/{cellule.py => cell.py} | 0 projet_rush_hour/jeu.py | 2 +- projet_rush_hour/plateau.py | 2 +- projet_rush_hour/vehicule.py | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename projet_rush_hour/{cellule.py => cell.py} (100%) diff --git a/projet_rush_hour/cellule.py b/projet_rush_hour/cell.py similarity index 100% rename from projet_rush_hour/cellule.py rename to projet_rush_hour/cell.py diff --git a/projet_rush_hour/jeu.py b/projet_rush_hour/jeu.py index dbfb1a6..e659f32 100644 --- a/projet_rush_hour/jeu.py +++ b/projet_rush_hour/jeu.py @@ -1,7 +1,7 @@ #mi13 # gantchou koffi -from cellule import Cell +from cell import Cell from vehicule import Vehicule from plateau import Plateau from config import Config diff --git a/projet_rush_hour/plateau.py b/projet_rush_hour/plateau.py index ddba4ea..6b91139 100644 --- a/projet_rush_hour/plateau.py +++ b/projet_rush_hour/plateau.py @@ -1,4 +1,4 @@ -from cellule import Cell +from cell import Cell from vehicule import Vehicule from config import Config from apqueue import ApQueue diff --git a/projet_rush_hour/vehicule.py b/projet_rush_hour/vehicule.py index 070be56..07e52a3 100644 --- a/projet_rush_hour/vehicule.py +++ b/projet_rush_hour/vehicule.py @@ -1,4 +1,4 @@ -from cellule import Cell +from cell import Cell class Vehicule(): -- GitLab