Add GomokuGame class template

This commit is contained in:
Dorian HAMDANI
2025-03-24 10:44:18 +01:00
parent d2a7c62485
commit 44598b1c13

38
src/GomokuGame.java Normal file
View File

@@ -0,0 +1,38 @@
import java.nio.file.Path;
public class GomokuGame {
public static final int DEFAULT_BOARD_WIDTH = 15; // largeur du plateau
public static final int DEFAULT_BOARD_HEIGHT = 15; // hauteur du plateau
public static final int DEFAULT_TOKENS_COUNT = 60; // nb de jetons
private Player player1;
private Player player2;
private int boardWidth;
private int boardHeight;
public static void main(String[] args) {
System.out.println("Hello World!");
}
public void newGame() {
}
public void startGame() {
}
public void save(Path filename) {
}
public void load(Path filename) {
}
public GomokuBoard getBoard() {
}
}