https://github.com/namila007/tic_tac_toe
Two Player simple tic tac toe game
https://github.com/namila007/tic_tac_toe
java java-game mvc-architecture tictactoe-game
Last synced: over 1 year ago
JSON representation
Two Player simple tic tac toe game
- Host: GitHub
- URL: https://github.com/namila007/tic_tac_toe
- Owner: namila007
- License: mit
- Created: 2017-08-25T20:25:07.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-30T15:42:43.000Z (almost 9 years ago)
- Last Synced: 2025-01-15T05:42:06.180Z (over 1 year ago)
- Topics: java, java-game, mvc-architecture, tictactoe-game
- Language: Java
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tic_Tac_Toe [](https://travis-ci.org/namila007/Tic_Tac_Toe)
Two Player simple tic tac toe game using MVC architechture
## 
## Description:
In this laboratory class, you are expected to implement the classical tick-tact-toe
game. Specification for is as follows:
• Display a 3x3 matrix of buttons.
• Each player gets a turns to pick a button which is not selected. If the player selects a
button already selected the system should ignore that selection and let the user select
again until he/she picks a free button.
• The buttons selected by user 1 should be marked with a 1 and that for user 2 is 2.
• User 1 gets the first chance then the user 2 get the chance and so on.
• Based on the pick the game might continue (in which case the other player should get
his/her turn) or end with either a win to the current player or a draw. When the game ends
the results should be displayed in a different window.