width and height
Merge branch 'master' of https://gitarero.ecam.fr/lucie.gauthier/OOP_3B2_Project
This commit is contained in:
parent
2c51ad4d0f
commit
15b3250c7e
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue