From 4fe4cc66c3ac37756f0de93bf2e0132273f16683 Mon Sep 17 00:00:00 2001 From: Mathieu Date: Tue, 31 Mar 2020 15:50:06 +0200 Subject: [PATCH] Map textures added to rules --- index.html | 3 +++ script.js | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/index.html b/index.html index 6ccc169..4a14861 100644 --- a/index.html +++ b/index.html @@ -45,6 +45,9 @@ Wall :
+ Map : +
+
Go back to menu diff --git a/script.js b/script.js index 955c58a..b71b9c7 100644 --- a/script.js +++ b/script.js @@ -133,6 +133,10 @@ function showRulesScreen() { // Display all wall wallList.appendChild(imgWall); + + // Display map texture + mapList.appendChild(imgGrass); + mapList.appendChild(imgIce); }