Question: Your Project In this project, you ll create data types in a class structure for cell - based board games similar to Tic - Tac

Your Project
In this project, youll create data types in a class structure for cell-based board games similar
to Tic-Tac-Toe. Games like Connect Four and Mastermind also use boards divided by rows
and columns. The Board and Cell classes represent the board, while thePlayer, Mark, and
Outcome enumerations track the game.
Youll use the classes and enumerations created in this project in future graded projects.
Youll use the project itself in the next lesson.
Instructions
1. Create a new Eclipse Java project named BoardGameTester.
2. Select File > New > Package to create a package named games.boards.
3. Select File > New > Enum to create an enumeration named Player in the games.boards
package defined as follows:
public enum Player {FIRST, SECOND}
This enumeration represents the current player in a turn-based game.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!