feat: fusion Circuit et CircuitCell

This commit is contained in:
2025-11-05 22:26:20 +01:00
parent d2847745ba
commit 8d280b1024
5 changed files with 74 additions and 71 deletions

View File

@@ -1,13 +1,13 @@
public class Main {
public static void main(String[] args) throws InterruptedException {
Map m = Map.fromChars(new Character[][] {
{'3', '#', '2'},
{'#', ' ', 'S'},
{'9', '#', 'F'},
});
// Map m = Map.fromChars(new Character[][] {
// {'3', '#', '2'},
// {'#', ' ', 'S'},
// {'9', '#', 'F'},
// });
Game game = new Game.Builder()
.setMap(m)
.defaultMap()
.setPlayers(3)
.build();