fix: ajout multiple fonction Map / Game / Car

This commit is contained in:
2025-10-30 19:08:56 +01:00
parent 23f56113b7
commit 974fa21c3d
4 changed files with 108 additions and 26 deletions

View File

@@ -6,7 +6,8 @@ public class Main {
{'9', '#', 'F'},
});
System.out.println(m.getPathSize());
Car car = new Car(m.getPathSize());
Game.create()
.init(3, m)
.run();
}
}