package tictactoe; /** * * @author levenick Apr 20, 2017 10:49:22 AM */ public class Move { private int row; private int col; Move(int row, int col) { this.row = row; this.col = col; } /** * @return the row */ public int getRow() { return row; } /** * @param row the row to set */ public void setRow(int row) { this.row = row; } /** * @return the col */ public int getCol() { return col; } /** * @param col the col to set */ public void setCol(int col) { this.col = col; } }