/** * Driver class for the TicTacToe game * * @author Devin Gray * @date 4/1/2016 **/ public class Driver { public static void main (String [] args) { TicTacToe game = new TicTacToe(3); System.out.println(game); while (!game.gameOver()) { game.makeMove(); System.out.println(game); } System.out.println(game.result()); } }