- GameBoard - Class in <Unnamed>
-
This class provides a graphical model of a board game.
- GameBoard(String, int, int) - Constructor for class GameBoard
-
Create a new game board of the given size.
- GameSquare - Class in <Unnamed>
-
This class provides a representation of a single game square.
- GameSquare(int, int, String, GameBoard) - Constructor for class GameSquare
-
Create a new GameSquare, which can be placed on a GameBoard.
- getSquareAt(int, int) - Method in class GameBoard
-
Returns the GameSquare instance at a given location.