fix: correction bug

This commit is contained in:
2025-12-19 16:59:57 +01:00
parent 25c3e8dbd7
commit 1bbccc4acc
8 changed files with 56 additions and 64 deletions

View File

@@ -1,9 +1,8 @@
package model.car;
import java.awt.Color;
import model.Game.Observer;
import model.map.Map;
public interface Car extends Observer {
public String accelerate();
@@ -29,7 +28,4 @@ public interface Car extends Observer {
public State getState();
public Color getColor();
public void setMap(Map map);
}