This is a simple Tic-Tac-Toe game developed using Java Swing. The game is for two players, 'X' and 'O', who take turns marking a 3x3 grid. The objective is to be the first player to get three of their marks in a row (horizontally, vertically, or diagonally).
- Two-player Mode: Player 'X' and player 'O' alternate turns.
- Win Detection: The game automatically detects when a player has won.
- Draw Detection: The game will declare a draw if all the cells are filled with no winner.
- New Game Option: Start a new game at any time from the menu.
- Highlight Winning Line: The winning combination is highlighted in blue.
- Java Development Kit (JDK) 8 or higher installed on your system.
- Clone the repository:
git clone <repository-url> cd <repository-directory>