An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Tic_Tac_Toe [![Build Status](https://travis-ci.org/namila007/Tic_Tac_Toe.svg?branch=master)](https://travis-ci.org/namila007/Tic_Tac_Toe)
Two Player simple tic tac toe game using MVC architechture

## ![screenshot_1](https://user-images.githubusercontent.com/18147085/29840824-ee058a5e-8d20-11e7-8010-845c965910bb.png)

## 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.