This commit is contained in:
TEST 2025-04-15 09:42:38 +02:00
parent 45cf50f6ff
commit 6cf6c4f95e
1 changed files with 5 additions and 4 deletions

View File

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