width and height

Merge branch 'master' of
https://gitarero.ecam.fr/lucie.gauthier/OOP_3B2_Project
This commit is contained in:
TEST 2025-04-15 09:23:46 +02:00
parent 2c51ad4d0f
commit 15b3250c7e
1 changed files with 5 additions and 4 deletions

View File

@ -4,18 +4,19 @@ import java.util.ArrayList;
public class Board { public class Board {
private int width;
private int height;
public Board(int colNum, int lineNum) { public Board(int colNum, int lineNum) {
//TODO //TODO
} }
public int getWidth() { public int getWidth() {
//TODO return this.width;
return 0;
} }
public int getHeight() { public int getHeight() {
//TODO return this.height;
return 0;
} }
public int getTurnNumber() { public int getTurnNumber() {