
/**
 * Play TicTacToe - using 2D arrays, and a class from scratch
 * 
 * @author Kathryn McKinley 
 * @version (a version number or a date)
 */
public class TicTacToe
{
	// Do we need static class variables?
	// what should our instance variables be?

	/**
	 * Constructor for objects of class TicTacToe
	 */
	public TicTacToe()
	{
		// initialize instance variables
		
	}

	/**
	 * Print out the tictactoe board
	 */
	public void printBoard()
	{
	}
    public static void main(String[] args) {
        
    }
}
