The Board
In this lesson, we will discuss how classes encapsulate data and functions when we start coding the game.
We'll cover the following...
Now that we have created a container for our game, it’s time to start coding the logic. First, we need the board to be able to draw the falling pieces and keep track of the game state.
The board and pieces are good candidates for a
class
. We can create anew Board
when starting a new game and anew Piece
every time a new piece enters the game.
Board class
Let’s start by creating a board.js
file where we add a class Board
. When we ...