This is a simple implementation of the classic game Tic-Tac-Toe, developed in Lua using the LOVE2D framework. In this build you will play against an "AI".
- Basic Tic-Tac-Toe gameplay
- Alternating turns between two players
- Win condition checks for rows, columns, and diagonals
- Simple and intuitive UI
To run this game, you need to have LOVE2D installed on your system. LOVE2D is a framework for making 2D games in Lua. You can download it from here.
Clone this repository or download the source code. Navigate to the project directory and run the game with LOVE2D:
- Run the game.
- The game starts with player 'O' and alternates to player 'X'.
- Click on an empty cell to place your symbol.
- The first player to align three of their symbols in a row, column, or diagonal wins.
- The game resets after a win or a tie.