/tictactoe

Challenge #2 with Marvel Developers Team talk about design and write code to make tic tac toe game.

Primary LanguageC#

Tic Tac Toe Game on WFA

using :

  • C#
  • WFA
  • Guna UI
  • Bunifu UI

Now we need to make this real game with backend programming !

You have a 3 * 3 boolean matrix.

boolean matrixPatel [3][3];

When you press any of the buttons in the game box, you must perform a set of the operations in PlayingPnl.cs code mentioned below, such as :

anyButton_Click(row,col)

should set 1 as X or 0 as O after user clicked on any game box buttons then change current player, update marks storage etc.

getPlayerSymbol()

should return X or O

getStatusOfGame()

should return winner symbol (X or O) or null if there is no winner yet

noMoreAtempts()

should return true if there is no more fields to place a X or O

Screenshot 2021-07-29 165803