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

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