From 8558722a910aa15a37d2eab9deada7909d99dc0d Mon Sep 17 00:00:00 2001 From: miguel Date: Mon, 20 Feb 2023 17:27:16 +0000 Subject: [PATCH] docs(make-your-game): adding info about the use of layers --- subjects/make-your-game/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/subjects/make-your-game/README.md b/subjects/make-your-game/README.md index e9feaeae7..2707f40a5 100644 --- a/subjects/make-your-game/README.md +++ b/subjects/make-your-game/README.md @@ -25,6 +25,7 @@ Here are some of the features you want to implement in your game: - **Countdown clock or Timer** that will indicate the amount of time the player has until the game ends or the time that the game has been running - **Score** that will display the current score (XP or points) - **Lives** that shows the number of lives that the player has left +- The use of layers must be minimum but not zero in order to optimize the rendering performance. You must not use frameworks or canvas, the game must be implemented using plain JS/DOM and HTML only