Changed visibility of static vars in Game.java
This commit is contained in:
parent
5fe910e2b0
commit
25a9a1bbd3
|
@ -13,12 +13,12 @@ public class Game {
|
|||
/**
|
||||
* Number of columns on the board.
|
||||
*/
|
||||
private final static int GAME_COLUMNS = 7;
|
||||
public final static int GAME_COLUMNS = 7;
|
||||
|
||||
/**
|
||||
* Number of rows on the board.
|
||||
*/
|
||||
private final static int GAME_ROWS = 6;
|
||||
public final static int GAME_ROWS = 6;
|
||||
|
||||
/**
|
||||
* Player One
|
||||
|
|
Loading…
Reference in a new issue