This commit is contained in:
parent
45cf50f6ff
commit
6cf6c4f95e
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue