nJohnson02 / tic-tac-toe

A tic-tac-toe game project for Computer Science 118
1 stars 1 forks source link

Create game engine #3

Open nJohnson02 opened 2 years ago

nJohnson02 commented 2 years ago

The game engine is the basic logic of the game, such as detecting a win or loss and validating player moves.

nJohnson02 commented 2 years ago

We also need to create a way to keep track of the board, we might be able to do this with a 2D array, or list of lists.