package org.teachingkidsprogramming.recipes.inDevelopment;
public class TicTacToe
{
//**need to create the TicTacToe board (object) and Player objects**
//
// Tell TicTacToe to call PlayInFirstEmptySpot (recipe below) when its Xs turn
//
// Start TicTacToe
//
// Recipe for PlayInFirstEmptySpot
//
// Do the following 9 times
//
// if the tictactoe board is empty for current square you trying
//
// Play your piece on that square on the TicTacToe board
//
// and set the current value of i to 10
//
// Repeat
}