Interface | Description |
---|---|
CS15TicTacToeGame |
A SUPPORT interface that defines the methods required for a game of
tic tac toe.
|
CS15TicTacToePlayer |
A SUPPORT interface that defines the method required for a player of
tic tac toe.
|
Class | Description |
---|---|
CS15TicTacToeBoard |
A SUPPORT class that models a 3x3 tic tac toe board and tracks the player's
selected CS15TicTacToeSquares.
|
CS15TicTacToeController |
A SUPPORT class that controls the tic tac toe game and displays
relevant game messages.
|
CS15TicTacToeFrame |
A SUPPORT class that handles adding the game frame to the scene and opening the
tic tac toe application.
|
CS15TicTacToeSquare |
A SUPPORT class that models one square of the CS15TicTacToeBoard.
|