Changed visibility of static vars in Game.java

This commit is contained in:
Malte Tammena 2017-10-18 22:56:32 +02:00
parent 5fe910e2b0
commit 25a9a1bbd3

View file

@ -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