/* Author: James Tam Version: Jan. 15, 2021 Tracks the current (row/column) location of the Tardis in the World array. */ public class Location { private int row; private int column; public Location() { row = 0; column = 0; } public Location(int aRow, int aColumn) { row = aRow; column = aColumn; } public int getColumn() { return(column); } public int getRow() { return(row); } public void setColumn(int aColumn) { column = aColumn; } public void setRow(int aRow) { row = aRow; } }