Move Modules
Learn how to take input from the player (user/computer).
We'll cover the following...
What we have
We have our board to play the game.
Requirements of this module
We need input from the player (user/computer) to place a marker on the board. Our game has two modes, so we will need input from the user and the computer.
Let’s break down the process into two parts:
-
User move
-
Computer move
In the next few lessons, we will learn how to get input from the user and ...